马上注册,结交更多好友,享用更多功能^_^
您需要 登录 才可以下载或查看,没有账号?立即注册
x
本帖最后由 豆浆喝油条 于 2017-7-10 16:35 编辑
1.在使用变量时,先赋值
2.变量名不能以数字开头
3.变量名区分大小写,number和Number是不同的
4.’字符串’ “字符串“ “””长字符串“””str1 = 'let\'s go'
str2='this is a"word"'
str3 ="""
This is asentence!
This is asentence!
This is asentence!
This is asentence!
"""
path1 =R'C:\Program File\Python\test.py'
path2 ='C:\\Program File\\Python\\test.py'
print("%s\n%s\n%s\n%s\n%s"%(str1, str2, str3, path1, path2))
5.
#蒙特卡罗方法又称统计模拟法、随机抽样技术,
#是一种随机模拟方法,以概率和统计理论方法
#为基础的一种计算方法,是使用随机数(或更
#常见的伪随机数)来解决很多计算问题的方法。
#在单位1的圆的四分之一里
import random
import math
fz = 0
fm = 0
total = t =10000000
while total >=0:
x = random.random()
y = random.random()
if math.sqrt(x * x + y * y) < 1:
fz = fz + 1
fm = fm + 1
total = total - 1
else:
fm =fm + 1
total = total - 1
p = 4 * (fz / fm)
print("当total=%d,PI = %f"%(t,p))
|