用python语言开发的web应用不像php那样,可以直接放到目录下就能访问,需要配置python环境下的web服务,然后为了统一域名和端口的使用,可以再用nginx配置一下,以对外提供访问:nginx配置如下: location / { include...
from urllib import parse str1 = 'haha哈哈' str2 = parse.quote(str1) #quote()将字符串进行编码 print(str2) #str2=haha%E5%93%88%...
原作者:https://github.com/LunacyZeus/Python3.6-for-Centos7.0 Python3.6-for-Centos7.0 这个脚本能让你在Centos7.0下搭建Python3....