文件名称:同时存在 Python 2 和 Python 3的运行范例
文件大小:666B
文件格式:ZIP
更新时间:2021-02-27 10:02:07
Python
# 方法一:如果系统中同时存在 Python 2 和 Python 3,可用它指定版本来运行代码: # py -2 helloworld.py # py -3 helloworld.py # 方法二:使用pip # py -2 -m pip install requests # py -3 -m pip install requests # -m pip 表示运行 pip 模块
【文件预览】:
Py27.py
Py36.py