Fork me on GitHub
  2019年12月9日
摘要: # dir()函数不带参数时,返回当前范围内的变量、方法和定义的类型列表;带参数时,返回参数的属性、方法列表# import os# print(dir(os))'''['DirEntry', 'F_OK', 'MutableMapping', 'O_APPEND', 'O_BINARY', 'O_ 阅读全文
posted @ 2019-12-09 20:30 OBOS 阅读(104) 评论(0) 推荐(0) 编辑
摘要: # def my_sum(x,y):# return x+y# lambda x,y:x+y# print((lambda x,y:x+y)(1,2)) # 3# salaries={# 'siry':3000,# 'tom':7000,# 'lili':10000,# 'jack':2000# } 阅读全文
posted @ 2019-12-09 20:30 OBOS 阅读(137) 评论(0) 推荐(0) 编辑