python入门学习(一开始编写程序)
首先安装好Python的基础环境
下面我们就开始编写吧
一般Python文件都是以.py结尾的文件
vim 1.py
print 'hello word'
如何执行Python呢?
1. 在命令行中直接利用Python命令执行(python XX.py) python 1.py 2.在执行文件中加入执行代码也就是Python所在的位置 #!/usr/bin/python print 'hello word' 之后保存退出并赋予执行权限 chmod +x 文件名称 ./执行
输出的结果都是
hello word
下面看下其他类型的文件
着重讲下2在哪里写?
新建一个文件XX.py里面内容如下
#!/usr/bin/python import py_compile py_compile.compile('1.py')
执行后会看到1.pyc