我在 Windows 上安装了 Python 2.7 和 3.3,在 Linux 上安装了 Python 2.7 和 3.2mu。我将如何使用版本 2.X 或 3.X 编写能够在 Windows 和 Linux 上使用的 Python 脚本?
我正在寻找几行代码来检查当前操作系统是什么,并在脚本的其余部分所在的任何目录中使用 Python 3.X。
我在想某个地方:
if operating_system == Windows:
run rest of script with C:\python_directory3.X\python
elif operating_system == Linux:
run rest of script with /usr/bin/python3.X
这样的代码是否存在,或者我必须为两个操作系统制作不同的脚本?