摘要: # json、os、sys、random、string、time、hashlib# json模块import json# json串就是字符串。d = { 'car': {'color': 'red', 'price': 100, 'count': 50}, '挨粪叉': {'color': 're 阅读全文
posted @ 2018-01-15 18:46 Crish 阅读(257) 评论(0) 推荐(0) 编辑
摘要: # 函数:# 一、少用全局变量# 1.不安全,易被修改# 2.运行用占中内存# 二、函数返回多个值,如果有多个值返回时,return的结果以元组格式返回def hello(a, b, c, d): return a, b, c, d# 三、列表推导式res = hello('ybq', 'mpp', 阅读全文
posted @ 2018-01-15 18:45 Crish 阅读(93) 评论(0) 推荐(0) 编辑