多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
# py新建文件 * * * * * >[info] linux下新建py并应行 ~~~ # touch hello.py # chmod u+x hello.py # vim hello.py #./hello.py ~~~ * 加入头信息 ~~~ #!/usr/bin/env python 或者 #!/usr/bin/python ~~~ >[info] 完整代码 ~~~ #!/usr/bin/env python print "hello world" ~~~ >[warning] 中文处理 * python 默认为ASCII码,无法输出汉字,需要更改编码 ~~~ #coding=utf-8 或者 #coding=utf8 或 # -*- coding:UTF-8 -*- 或 # -*- coding:utf-8 -*- 大小写忽略 写成utf8或utf-8都行 ~~~