摘要: python5部署:在windows平台上使用IIS部署Flask网站 网址:https://segmentfault.com/a/1190000008909201 第一步:安装IIS,启用CGI 第二步:安装wfastcgi pip install wfastcgi 第三步:启用wfastcgi 阅读全文
posted @ 2021-05-30 16:29 shuaibijian 阅读(234) 评论(0) 推荐(0)
摘要: python 4 框架 一 异步非阻塞IO的Tornado框架 下载 pip3 install tornado 第一个例子: import tornado.ioloop import tornado.web class MainHandler(tornado.web.RequestHandler): 阅读全文
posted @ 2021-05-30 15:22 shuaibijian 阅读(103) 评论(0) 推荐(0)
摘要: 十 面向对象(上) 1定义并使用类 定义类 类的基本使用 2 类对象 3 类方法 3.1定义并使用类方法 3.2构造方法__init__() 3.3方法调用:调用全局方法,调用类自身的方法self. 3.4创建多个实例 3.5使用私有方法__add 3.6析构方法:使用del删除对象时调用析构方法, 阅读全文
posted @ 2021-05-30 15:20 shuaibijian 阅读(78) 评论(0) 推荐(0)
摘要: python 1语言基础 一 Python安装 在mac系统安装Python 检测命令行 $ python control + D exit() 开发工具 vscode python插件 helloworld: 代码:输出print(‘hello world’); 运行:python3 first. 阅读全文
posted @ 2021-05-30 15:17 shuaibijian 阅读(175) 评论(0) 推荐(0)