摘要: html: <a href="http://view.officeapps.live.com/op/view.aspx?src=http%3a%2f%2fvideo.ch9.ms%2fbuild%2f2011%2fslides%2fTOOL-532T_Sutter.pptx"></a># http: 阅读全文
posted @ 2020-05-28 18:05 略略略额 阅读(365) 评论(0) 推荐(0)
摘要: 加了星号(*)的变量名会存放所有未命名的变量参数,例: def fun00(a,*b): print(a) print(' ') for item in b: print(item) return fun00(1,2,3,4) 输出: 1 2 3 4 阅读全文
posted @ 2020-05-28 16:22 略略略额 阅读(152) 评论(0) 推荐(0)