安装Python3
in Python with 0 comment

安装Python3

in Python with 0 comment

安装python3

#首先是更新源
sudo apt update

#然后是安装Python
sudo apt install python3

#最后升级Python
sudo apt upgrade python3

运行python3

python3

退出

符号含义

#使用print函数
print("h")
#输出hello world
print("hello world")

新建py文件

#用vi打开并编辑oeasy.py
vi oeasy.py

编写高质量Python代码的90条建议

编写高质量Python代码的90条建议