1. 程式人生 > >Python2.7版本和3.6版本相容問題

Python2.7版本和3.6版本相容問題

環境:Window7

方法:將2.7安裝到C:\Python27下,將3.6安裝到C:\Python36下,在需要使用pthon3 run的.py檔案中,新增shebang line來實現。

shebang line >>>>   #!/usr/bin/env python3

新增到.py的頭部即可

預設情況下沒有宣告的時候預設使用python2.7,而新增shebang line的.py會呼叫python3來執行