python學習第四十六天dir( )函數用法
阿新 • • 發佈:2018-10-07
ont struct oca str light __name__ content count roc
dir( )函數有點像目錄的意思,但是他是包含由模塊定義的名稱的字符串的排序列表。這個列表包含模塊中定義的所有模塊,變量和函數的名稱。
列舉其用法
import time
content = dir(time)
print (content)
輸出結果
[‘_STRUCT_TM_ITEMS‘, ‘__doc__‘, ‘__loader__‘, ‘__name__‘, ‘__package__‘, ‘__spec__‘, ‘altzone‘, ‘asctime‘, ‘clock‘, ‘ctime‘, ‘daylight‘, ‘get_clock_info‘, ‘gmtime‘, ‘localtime‘, ‘mktime‘, ‘monotonic‘, ‘perf_counter‘, ‘process_time‘, ‘sleep‘, ‘strftime‘, ‘strptime‘, ‘struct_time‘, ‘time‘, ‘timezone‘, ‘tzname‘]
特殊的字符串變量__name__是模塊的名稱,__file__是加載模塊的文件名。
文章來自 http://www.96net.com.cn/
python學習第四十六天dir( )函數用法