下午学习,函数部分相关内容
摘要:
1 #函数(function):有返回值 2 #过程(procedure):是简单、特殊并且没有返回值的,python只有函数没有过程 3 4 def hello(): 5 print("hello word") 6 temp=hello() #这条语句显示结果为:hello word 7 print(temp)#打印出来的结果是 none 这就是返回值 8 9 d... 阅读全文
posted @ 2019-01-04 17:00 天若有情66 阅读(85) 评论(0) 推荐(0) 编辑