python2.7上运行python3的代码
linux-dash
A beautiful web dashboard for Linux
项目地址:https://gitcode.com/gh_mirrors/li/linux-dash
免费下载资源
·
python3现在越来越流行了,经常拿到python3的代码,但是本人的linux服务器一直是python2.7的。所以经常得改改。这里总结一下2.7运行3的程序时,需要修改的点。
- python2.7默认是ascii编码的,尽管加上了#coding:utf-8这样的提示,但经常读UTF-8文件时会报编码错误,但python3是不报的。所以,拿到python3的程序,首先加上
# encoding=utf8
import sys
reload(sys)
sys.setdefaultencoding('utf8')
2.print格式不同。python3的print要加(),但python2.7是不认识(),会报错的,所以,把所有print语句的括号全部去掉。
- 其他可能还有别的差异,暂时没有遇到。
GitHub 加速计划 / li / linux-dash
10.39 K
1.2 K
下载
A beautiful web dashboard for Linux
最近提交(Master分支:2 个月前 )
186a802e
added ecosystem file for PM2 4 年前
5def40a3
Add host customization support for the NodeJS version 4 年前
更多推荐
已为社区贡献5条内容
所有评论(0)