1、 在linux中安装python后,在linux命令行中输入python即可切换到Python命令行下
2、 print ‘hello world!’ == print (“hello world!”)
3、编写一个Python脚本,然后在执行
比如:在文本中输入:print ‘hello word!‘
然后把此文件保存为py文件,比如:h.py
在linux环境下,先把路径切换到文件存放的路径,然后再执行
4、把Python程序改成可执行文件(文件名:h.py),可直接执行:
文件内容:#!/usr/bin/env python
print(‘Hello World!‘)
在linux环境中执行命令:
1、切换到执行文件目录下
2、把文件设置成可执行:chmod +x h.py
3、执行文件:./h.py
时间: 2024-10-18 10:45:55