python

mac自带的python安装在/usr/bin/python目录下

进入终端直接键入python即可进入交互模式
或是python xxx.py 运行 写好的python程序

http://www.tudou.com/programs/view/pZvrOt9RlmE/
http://www.jianshu.com/p/5c0f97b6a0d2

cd /Users/junlv/Documents
打开文稿
mkdir sample
创建一个简单目录
cd sample
打开目录
touch hello.py
创建Python文件
vim hello.py
编辑文件
i
输入编辑
ESC 退出编辑
:q
跳出编辑
python hello.py
运行 文件

你可能感兴趣的:(python)