Ipython3的简单命令

1.查看python的内置函数

dir(__builtin__)

2.查看类实例对象的属性、方法

class test(object):
	pass
t = test()
dir(t)

你可能感兴趣的:(Ipython3的简单命令)