摘要:
1.abs(5)#返回绝对值 2.all()#所有为真返回true,为假返回false 3.any()#其中一个为真就返回true 4.bin()#返回二进制形式 5.bool()#为真返回 true,为假返回false 6.callable()#若为可执行返回 true,反之返回false 7.c 阅读全文
摘要:
1.abs(5)#返回绝对值 2.all()#所有为真返回true,为假返回false 3.any()#其中一个为真就返回true 4.bin()#返回二进制形式 5.bool()#为真返回 true,为假返回false 6.callable()#若为可执行返回 true,反之返回false 7.c 阅读全文
摘要:
1.def function(a): b=a+1 return b res=function(99) 2.function=lambda a:a+1 #创建形式参数a #函数内容a+1 #并且把结果return 阅读全文
|