ubunt 下python 2 x 公升級到3 x

2021-10-08 18:51:18 字數 1206 閱讀 7234

1.使用ubuntu 系統檢視python 版本是2.x 想公升級成3.x

系統裡我的是2.x:

mnt/hgfs/share/project/mypython$ python

python 2.7

.12(

default

, jul 21

2020,15

:19:50

)[gcc 5.4

.020160609

] on linux2

type "help",,

"credits" or "license"

for more information.

>>

>

exit

()

可以先看看 /usr/bin/ 目錄下有的python ,例如我的目錄下:

ls /usr/bin/ |grep python

mnt/hgfs/share/project/webbench-

1.5$ ls /usr/bin/

|grep python

dh_python2

dh_python3

python

python2

python2.

7python3

python3.

5python3.

5mpython3m

sudo rm /usr/bin/python
sudo ln -s  /usr/bin/python3.

5/usr/bin/python

最後輸入python 命令檢視python版本已經變成3.x 的版本:

dg@ubuntu:

/mnt/hgfs/share/project/mypython$ python

python 3.5.2(

default

, jul 17

2020,14

:04:10

)[gcc 5.4

.020160609

] on linux

type "help",,

"credits" or "license"

for more information.

>>

>

Python2 X輸入函式

mystr raw input 請輸入指令 import os os.system mystr 執行結果 ps input返回的是數值型別,如int,float raw inpout返回的是 字串型別 string型別 若輸入是表示式,則input會計算出表示式的值,而raw input會原樣輸出 ...

Python2 x中文亂碼問題

python中亂碼問題是乙個很頭痛的問題。在python3中,對中文進行了全面的支援,但在python2.x中需要進行相關的設定才能使用中文。否則會出現亂碼 問題原因 在python2.x中主要是字元編碼的問題,處理不好的話,會導致亂碼。python預設採取的ascii編碼,字母 標點和其他字元只使...

Python2 x 中文亂碼問題

python 檔案中如果未指定編碼,在執行過程會出現報錯 usr bin pythonprint 你好,世界 以上程式執行輸出結果為 file test.py line 2syntaxerror non ascii character xe4 in file test.py on line 2,bu...