摘要: 0. 函数和过程: >>> def test(): print("hello") >>> print(test())helloNone 1.返回值: >>> def test(): return[1,3,"小甲鱼"] >>> test()[1, 3, '小甲鱼']>>> >>> def test() 阅读全文
posted @ 2018-05-25 10:04 Jenny测试开发 阅读(153) 评论(0) 推荐(0) 编辑
摘要: 1. >>> def myfuction(mun1,mun2): result = mun1 + mun2 print(result) >>> myfuction(1,2)3>>> 课后作业: 1. 没有听说过DRY 2.函数可以变量 3. 创建函数,使用关键字的时候需要明确关键字是干什么作用的,定 阅读全文
posted @ 2018-05-25 09:48 Jenny测试开发 阅读(497) 评论(0) 推荐(0) 编辑