摘要: def test1(): print('in the test1') def test(): print('in the test') return test1 res=test()#先执行test()然后执行test1()输出, print(res())#最后执行的是test1() 没有return默认值为none不加括号返回的是地址,加了括号()就不是地址执行函数。... 阅读全文
posted @ 2018-04-26 19:57 未来的技术 阅读(72) 评论(0) 推荐(0) 编辑
摘要: def han(): han()必须要有的模型函数 阅读全文
posted @ 2018-04-26 16:39 未来的技术 阅读(181) 评论(0) 推荐(0) 编辑
摘要: def cal(n):#2 print(n)#3 10 5 2 1 if int(n/2)==0:# 10/2 5/2 2/2 1/2=0 return n #1 2 5 10 res=cal(int(n/2))#cal5 cal2 cal1.....res=cal1=1,res=cal2,res=cal5, print(res)# 111 ... 阅读全文
posted @ 2018-04-25 21:57 未来的技术 阅读(150) 评论(2) 推荐(0) 编辑
摘要: 递归就是调用自己,return才能结束循环,print没用, 阅读全文
posted @ 2018-04-25 21:37 未来的技术 阅读(106) 评论(0) 推荐(0) 编辑
摘要: 全局变量用大写,局部变量用小写NAME=['cat','dog'] def change_name(): global NAME name='parrow' print('my name is ',name) change_name() print(NAME) 代码的执行步骤1 NAME ='cloud' def huangwei(): 3 name=... 阅读全文
posted @ 2018-04-25 19:52 未来的技术 阅读(336) 评论(0) 推荐(0) 编辑
摘要: 局部变量只在函数里起作用,全局变量在整个函数里起作用def logger (): '日志功能' pass def home (): logger() print('home') def index(): logger() print('index') 函数与调用函数name='cat' def change_name(): name=... 阅读全文
posted @ 2018-04-24 21:52 未来的技术 阅读(71) 评论(0) 推荐(0) 编辑
摘要: def cal(x,y):。。形参 s=x**y 。。x的y次方 return s c=cal(2,3) ..实参 print(c) 阅读全文
posted @ 2018-04-23 23:05 未来的技术 阅读(108) 评论(0) 推荐(0) 编辑
摘要: 函数:def test(s): ... return 过程没有return,函数有。但是过程也是函数 i am houndi am dogNone 没有返回值为nonei am dog 没有返回值:none 一个返回值:那个对象 多个返回值:元祖形式()在括号中显示 阅读全文
posted @ 2018-04-23 22:59 未来的技术 阅读(93) 评论(0) 推荐(0) 编辑
摘要: def test(x): y=2*x+1 return y print(test(3)) 简单计算def test(x): y=2*x+1 return y t=input('>>>') y=test(int(t)) print(y) while True if cpu>90% 连接服务器 发邮件 关... 阅读全文
posted @ 2018-04-23 22:48 未来的技术 阅读(2086) 评论(0) 推荐(0) 编辑
摘要: 。format 且要对应 对应列表取值 阅读全文
posted @ 2018-04-23 22:22 未来的技术 阅读(114) 评论(0) 推荐(0) 编辑