标签:常用 返回 blog color help 函数 对象 instance python
help(max) #查看max函数的文档信息 print(max.__doc__) #上面功能的简化版
a,b = 1,‘xx‘ print(type(a),type(b))
1 a = 123 2 isinstance(a,int)
标签:常用 返回 blog color help 函数 对象 instance python
原文地址:http://www.cnblogs.com/qqhexi/p/7305290.html