摘要: 1 #!/usr/bin/env python3 2 # -*- coding:utf-8 -*- 3 4 #01 函数的定义,调用 5 #生日歌 6 def happy(): 7 print("Happy birthday to you!") 8 9 def sing(person): 10 happy() 11 happy() 12 p... 阅读全文
posted @ 2017-11-06 13:37 hayden__wang 阅读(207) 评论(0) 推荐(0) 编辑