1)2.7中,input的作用
>>> temp=1
>>> input()
temp
1
>>> eval(‘temp‘)
1
2)_在shell中作用
>>> temp=1
>>> _
1
3) decimal.Decimal 精确计算,但只能和int,decimal.Decimal 进行计算(float至少不可以)
4)sys.float_info.epsilon
时间: 2024-10-20 17:12:01
1)2.7中,input的作用
>>> temp=1
>>> input()
temp
1
>>> eval(‘temp‘)
1
2)_在shell中作用
>>> temp=1
>>> _
1
3) decimal.Decimal 精确计算,但只能和int,decimal.Decimal 进行计算(float至少不可以)
4)sys.float_info.epsilon