码迷,mamicode.com
首页 > 其他好文 > 详细

提高级

时间:2018-10-25 22:39:42      阅读:191      评论:0      收藏:0      [点我收藏+]

标签:div   1.4   style   glob   span   col   全局变量   提高   int   

#二分开方
x = 2
low = 0.0
high = x
guess = (low+high)/2
while abs(guess**2-x) >1e-4:
    if guess**2 >x:
        high = guess
    else:
        low = guess
    guess = (low +high) /2
print (guess)


1.4141845703125
#局部变量,全局变量
x = 1
def f():
    x = 2
    print(x)
f()
print(x)

2
1
 1 x = 1
 2 def f():
 3     global x#x为全局变量
 4     x = x+1
 5     print(x)
 6 f()
 7 print(x)
 8 
 9 2
10 2

 

提高级

标签:div   1.4   style   glob   span   col   全局变量   提高   int   

原文地址:https://www.cnblogs.com/tingtin/p/9853336.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!