摘要: 1 #!/usr/bin/env python 2 # -*- coding:utf-8 -*- 3 #Author:sking 4 #Python3字典操作详解 Python3字典操作大全 5 6 #字典是无序的(因为它没有下标),key必须是唯一的 7 #字典是可变的,可以修改和添加 8 #创建字典 9 info = {'haha':12,'heihei':13,'wo... 阅读全文
posted @ 2019-01-09 21:56 SKING_Python 阅读(5456) 评论(0) 推荐(1) 编辑