摘要:
1. if elif else 2. 条件表达式:三元操作符: smaller = x if x < y else y == if x < y : smaller =x else : smaller = y3. range(start, end, step=1) 4. xrange(): 当有一个很... 阅读全文
摘要:
1. 内建方法fromkeys()创建一个默认字典, 字典中元素具有相同的值,默认为None dict1 = {}.fromkeys(('x', 'y'), -1)2. 访问字典中的值, for key in dict1.keys(): print 'key=%s, valu... 阅读全文