在python中使用dir()函数查看当前变量,具体方法如下:
1.首先,在python中导入string模块;
import string
2.string模块导入后,使用string模块中的dir()函数即可查看查看所有变量;
print(dir(string))