Fork me on GitHub
摘要: 1.定义函数并使用示例:1 def shuchu(a,b):#定义函数2 if a>b:3 print(a,'is bigest')4 else:5 print(b,'is bigest')6 shuchu(1,3)#直接调用7 x=78 y=99 s... 阅读全文
posted @ 2015-09-23 17:12 夏成都 阅读(161) 评论(0) 推荐(0) 编辑