编辑一个helloworld脚本
编辑一个helloworld python脚本helloworld.py
#!/usr/bin/python
print ('hello world!!!')
a=12
b=13
print ( ( a + b ))
print (a - b)
print ("###############")
import os
esc退出
:wq 保存退出
# python helloworld.py
hello world!!!
25
-1
###############
页:
[1]