python基础语法
列表推导式生成list
1 | # in后面跟其他可迭代对象,如字符串 |
运行结果:
1 | ['ppppppp', 'yyyyyyy', 'ttttttt', 'hhhhhhh', 'ooooooo', 'nnnnnnn'] |
参考:Python列表推导式_weixin_43790276的博客-CSDN博客
Dict操作
找出最大值
1 | sampleDict = {'Ritika': 5, 'Sam': 27, 'John': 12, 'Sachin': 14, 'Mark': 19, 'Shaun' : 27} |
Queue
层序遍历二叉树:
1 | from queue import Queue |