2012年5月28日

Python-物件型态-数字


Python-物件型态-数字
1.整数四则运算
>>> 123+456579>>> 123-456-333>>> 123*45656088>>> 123/4560除法会只取整数结果

2.浮点数四则运算
>>> 123.12+456579.12>>> 123.12-456-332.88>>> 123.12/4560.27000000000000002>>> 123.12*45656142.720000000001乘除法是以倍精度表示3.将结果以文字方式表示>>> print '%s'%(123.12-456)-332.884.使用数学运算模组
>>> import math>>> math.pi3.1415926535897931>>> math.sqrt(49)7.05.使用随机乱数模组>>> import random>>> random.random()0.61308828169983831>>> random.choice([1,3,5,7,9])5

没有评论:

发表评论

BlogAD