摘要: 1.建议不要用命令安装,我失败了,我下次不用命令了 下载地址:https://pan.baidu.com/s/1slJAgqh 安装教程:https://www.jianshu.com/p/fd3aae701db9 2.mysql 状态停止、重启、查看 https://blog.csdn.net/i 阅读全文
posted @ 2020-08-10 20:11 XiaoLee-C 阅读(143) 评论(0) 推荐(0) 编辑
摘要: 一、什么是装饰器? import time def decorator(func): def wapper(): print(time.time()) func() return wapper @decorator def f1(): print("This is a function named" 阅读全文
posted @ 2020-08-10 16:25 XiaoLee-C 阅读(193) 评论(0) 推荐(0) 编辑
摘要: 1、匿名函数是什么? def add(x,y): return x+y print(add(1,2)) #普通函数的定义和调用 f = lambda x,y:x+y print(f(1,2)) #匿名函数的定义,并将这个函数赋值给变量,使用变量调用函数 print(f(1,2)) # [Runnin 阅读全文
posted @ 2020-08-10 15:37 XiaoLee-C 阅读(185) 评论(0) 推荐(0) 编辑