dir():打开,看见
help():说明书
dir(pytorch)//输出:1,2,3,4
dir(pytorch.3)//输出:a,b,c
help(pytorch.3.a)//输出:a道具的具体使用方法,例如将此扳手放在特定地方,然后拧动
总结:dir()函数,能让我们知道工具箱以及工具箱中的分隔区有什么东西。
help()函数,能让我们直到每个工具是如何使用的,工具的使用方法。
实践
1.打开pycharm;
2.使用python console
3.import torch
4.dir(torch);//可以输出torch中的小模块
5.help(torch.cuda);//可以输出torch中的cuda模块是什么,具体使用方法