(web开发)用python创建一个最简单的网站?
本文,用Python来创建一个最简单的网页。
1先定义一个函数,用来向网站服务器发送请求:def yingyong(environ, start_response): start_response('200 OK', [('Content-Type', 'text/html')]) return [b'<h1>How Are!</h1>']要求网站在网页上显示粗体的How Are!
2导入wsgi模块的子模块,用来创建服务器。from wsgiref.simple_server import make_server。
3创建服务器,IP为空,端口号为900。a=900***d = make_server('', a, yingyong)这个服务器将调用前面的函数 yingyong。
4让服务器开始运行,并长时间运行。***d.serve_forever()forever,让服务器永远运行,除非服务器被迫关闭。服务器在哪里?就在python里面,关闭python编译器,就等于关闭了服务器。
5再访问步骤一里面的链接,就得到如下网页。这说明服务器开始运行了。刷新这个网页,就相当于重复访问这个网页。每访问一次(刷新一次),都会向服务器发送请求,在python编译器里面会有所体现。
6关闭python编译器,服务器也就关闭了,这个网页会立刻崩溃。再打开python并运行这段代码,这个网页又会立刻恢复。完整代码如下:def yingyong(environ, start_response): start_response('200 OK', [('Content-Type', 'text/html')]) return [b'<h1>How Are!</h1>']from wsgiref.simple_server import make_servera=900***d = make_server('', a, yingyong)***d.serve_forever()。
1、开始之前,请先用浏览器访问下面这个网页:***://127.0.0.1:900/
2、先定义一个函数,用来向网站服务器发送请求:
def yingyong(environ, start_response):
start_response('200 OK', [('Content-Type', 'text/html')])
return [b'<h1>How Are!</h1>']
要求网站在网页上显示粗体的How Are!
3、导入wsgi模块的子模块,用来创建服务器。
from wsgiref.simple_server import make_server
4、创建服务器,IP为空,端口号为900。
a=900
python3怎么安装sympy和matplotlib模块?
首先安装最新版的 Python 3,去 Python ***下载最新的 Python 安装文件,网址是:***s://***.python.org/。按照 安装对话框提示进行安装,特别注意需要勾选将 Python 解释器添加到系统环境变量 PATH 中;
然后安装 sympy, 在 Windows cmd 窗口中输入:pip install sympy,这是默认的安装方式,此方式将会从国外下载安装包,由于网络原因可能无效。当使用前面的方式无法安装时,可以考虑选择国内镜像源安装,在 cmd 中输入:pip install sympy -i
***s://pypi.tuna.tsinghua.edu.cn/simple;
最后安装 matplotlib,在 cmd 中输入:pip install matplotlib -i ***s://pypi.tuna.tsinghua.edu.cn/simple。
备注:
以下是几个国内 Python 包镜像源:
清华大学:***s://pypi.tuna.tsinghua.edu.cn/simple/
阿里云:***://mirrors.aliyun***/pypi/simple/
中国科技大学 ***s://pypi.mirrors.ustc.edu.cn/simple/
华中理工大学:***://pypi.hustunique***/
到此,以上就是小编对于python3 学习网站推荐的问题就介绍到这了,希望介绍关于python3 学习网站推荐的2点解答对大家有用。