怎样用python 判断字符串的字面值是整数或浮点数

2024-12-03 12:22:56
推荐回答(1个)
回答1:

t='12.3'try: int(t) print('integer')except ValueError: print('float')