2020年秋季最新Python详细入门教程!全网最新最全
1. import
# -*- coding: utf-8 -*- ## 引入新的包 import turtle import pickle # 文件操作 import tensorflow as tf # alias tf from time import time, localtime # 引入想要的功能 from time import * # 引入所有功能 ## 引入自定义包: 在Mac系统中,下载的python模块会被存储到外部路径site-packages,同样,我们自己建的模块也可以放到这个路径,最后不会影响到自建模块的调用。 """ If the module doesn"t exist, pip install name_module # for python2 pip3 install name_module # for python3 pip install name_module=verson_num # for python install specific versions pip3 install name_module=version_num # for python3 specific versions pip install -U name_module # for update pip3 install -U name_module # for update """