Python3 字典 Fromkeys Python3 位运算符 Python3 字典 Get 方法 Python3 字典 Fromkeys #!/usr/bin/python3 seq = ('name', 'age', 'sex') dict = dict.fromkeys(seq) print ("New Dictionary : %s" % str(dict)) dict = dict.fromkeys(seq, 10) print ("New Dictionary : %s" % str(dict)) Python3 位运算符 Python3 字典 Get 方法