摘要:
import json# json串就是字符串d = { 'car': {'color': 'red', 'price': '100', 'count': 50}, 'car1': {'color': 'red', 'price': '100', 'count': 50}, 'car2': {'co 阅读全文
摘要:
import hashlib第一种 pwd = 'taiyanghua123' bytes_pwd = pwd.encode() # 把字符串转为bytes类型 m = hashlib.md5() m.update(bytes_pwd) # 加密,不能传字符串,只能传bytes类型,二进制 prin 阅读全文
摘要:
def say(name): print(name)panda = saypanda('wang')def add(): print('add')def view(): print('view')def delete(): print('delete')choice = input('请输入选项') 阅读全文
摘要:
# 函数如果有多个return值,那么会把这几个return值放到一个元组里面返回 # def hello(a, b, c, d):# return a, b, c, d## res = hello('abc', 'ert', 'qwe', 'lkj')# print(res) # 列表推导式num 阅读全文
摘要:
print(all([1, 2, 3, 4])) # 判断可迭代的对象里面的值是否都为真 print(all([1, 2, 3, 0])) # 判断可迭代的对象里面的值是否都为真 非零即真 print(any([0, 1, 2, 3, 4])) # 判断可迭代的对象里面的值是否有一个为真 print 阅读全文