摘要: def login(string): def outer(func): def inner(*args,**kwargs): name = input('name:') password = input('password:') if name == 'a' and password == '123'... 阅读全文
posted @ 2018-08-01 16:11 asamm 阅读(130) 评论(0) 推荐(0)
摘要: 1. 创建虚拟环境: 安装virtualenvwrapper: pip install virtualenvwrapper 创建环境:mkvirtualenv 名称 进入虚拟环境:1.worken 名称 2.进入Scripts, activate.bat 退出虚拟环境:deacitivate 更改默 阅读全文
posted @ 2018-08-01 13:17 asamm 阅读(160) 评论(0) 推荐(0)