摘要: 8.1 定义函数 def 函数名(): 函数体 函数名()#调用函数名 8.1.1 向函数传递信息 可以多次调用函数实现信息传递 def user(username): print("Hello "+username.title()) user("lili") user("xixi") 8.1.2 阅读全文
posted @ 2022-11-15 12:03 Trouvaille_fighting 阅读(23) 评论(0) 推荐(0)