码迷,mamicode.com
首页 > 编程语言 > 详细

python中3个帮助函数help、dir、type的使用

时间:2015-12-09 19:18:21      阅读:171      评论:0      收藏:0      [点我收藏+]

标签:

1、help函数:查看模块、函数、变量的详细说明:

查看模块 help("modules")

查看包  help("json")

查看类 help(json.JSONDecoder)

查看函数 help(json.dump)

 

2、dir函数:查看变量可用的函数或方法

>>> import time
>>> dir(time)
[‘__doc__‘, ‘__name__‘, ‘__package__‘, ‘accept2dyear‘, ‘altzone‘, ‘asctime‘, ‘clock‘, ‘ctime‘, ‘daylight‘, ‘gmtime‘, ‘localtime‘, ‘mktime‘, ‘sleep‘, ‘strftime‘, ‘strptime‘, ‘struct_time‘, ‘time‘, ‘timezone‘, ‘tzname‘]

 

3、type函数:查看变量的类型

<type ‘module‘>
>>> type (json.__name__)
<type ‘str‘>
>>> type (json.decoder)
<type ‘module‘>

>>> type(123)
<type ‘int‘>
>>> type("aaa")
<type ‘str‘>

python中3个帮助函数help、dir、type的使用

标签:

原文地址:http://www.cnblogs.com/linuxtech/p/5033650.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!