我在Windows上安装了Python2.7和3.3,在Linux上安装了Python2.7和3.2mu.如何使用2.X或3.X版本编写既能在Windows上使用又能在Linux上使用的Python脚本?
我正在寻找几行代码,它们将检查当前的操作系统是什么,并在脚本的其余部分中使用Python3.x。
我想的大概是:
if operating_system == Windows:
run rest of script with C:\python_directory3.X\python
elif operating_system == Linux:
run rest of sc