本文共 897 字,大约阅读时间需要 2 分钟。
l=[1,2,3,4]print(list(reversed(l)))print(l)---[4, 3, 2, 1][1, 2, 3, 4]
print(round(3.5))---4
l='hello's1=slice(3,5)s2=slice(1,4,2)print(l[s1])print(l[s2])print(s2.start)print(s2.stop)print(s2.step)
# 排序本质就是在比较大小,不同类型之间不可以进行排序l=[2,3,4,1,5]print(sorted(l))---[1, 2, 3, 4, 5]
people=[ {'name': 'alex', 'age':18}, {'name': 'wupeiqi', 'age':20}, {'name': 'zsc', 'age':100}, {'name': 'lhf', 'age':30}]print(sorted(people,key=lambda dic:dic['age']))# 根据values排序取出keyname_dic={ 'yuanhao': 900, 'alex':200, 'wupei':300}print(sorted(name_dic,key=lambda key:name_dic[key]))
vars()显示。。。
def test(): msg='hello,world.' print(locals()) print(vars()) print(vars(int))test()---{'msg': 'hello,world.'}{'msg': 'hello,world.'}{'__repr__':, '__hash__':
转载地址:http://oxexa.baihongyu.com/