Python编程 - 起步

一、起步

1.1 检查Python版本

在终端Terminal输入:

python

python

打印以上信息,说明系统安装了python环境。

python3

打印以上信息,说明系统安装了python3环境。

使用exit()命令退出编程环境。

1.2 Hello World

print("Hello World!")

hello

1.3 从终端运行Python程序
  • LinuxOS X系统中从终端运行Python程序
    • 使用cd(表示切换目录,change directory)在文件系统中导航
    • lslist的简写)显示当前目录中所未隐藏的文件
1
2
3
$ cd Source/Python
$ ls
$ python hello_world.py
  • Windows系统中从终端运行Python程序
    • 使用终端命令cd(表示切换目录,change directory)在文件系统中导航
    • dir(表示目录,directory)列出当前目录中的所有文件
1
2
3
$ cd Source/Python
$ dir
$ python hello_world.py