基本用法:
在ubuntu中用vim编写保存后 用python +文件名输出
☆怎么在ubuntu中把Python3设置为默认
进入Python的交互模式:
退出交互模式:exit()
比Python更厉害的ipython:
ipytohn不仅支持python应有的功能还能执行linux的功能。
注释
单行注释: #
多行注释: ‘’’ ‘’’
python2和python3的区别
如果vim中带有汉字(包括注释),用python3运行没有错误,用python2运行报错,python2不能直接执行带汉字的程序,必须在第一行加 #coding=utf-8
或者 -- coding=utf-8 --