您好,登錄后才能下訂單哦!
#形式 # 角色
#抓取對(duì)象內(nèi)可用的所有屬性列表的簡(jiǎn)單方式
import random
print(dir(random))
#['BPF', 'LOG4', 'NV_MAGICCONST', 'RECIP_BPF', 'Random', 'SG_MAGICCONST',
#'SystemRandom', 'TWOPI', '_BuiltinMethodType', '_MethodType', '_Sequence',
#'_Set', 'all', 'builtins', 'cached', 'doc', 'file',
#'loader', 'name', 'package', 'spec', '_acos', '_bisect',
#'_ceil', '_cos', '_e', '_exp', '_inst', '_itertools', '_log', '_pi', '_random',
#'_sha512', '_sin', '_sqrt', '_test', '_test_generator', '_urandom', '_warn',
#'betavariate', 'choice', 'choices', 'expovariate', 'gammavariate', 'gauss',
#'getrandbits', 'getstate', 'lognormvariate', 'normalvariate', 'paretovariate',
#'randint', 'random', 'randrange', 'sample', 'seed', 'setstate', 'shuffle',
#'triangular', 'uniform', 'vonmisesvariate', 'weibullvariate']
print(dir('1') == dir(''))
#在可執(zhí)行代碼執(zhí)行前,會(huì)自動(dòng)封裝這個(gè)字符串,也就是文檔字符串,使他成為doc
#內(nèi)置文檔字符串可以用__doc_來(lái)查看
import sys
#print(sys.doc)
#...
print(sys.getrefcount.doc)
#getrefcount(object) -> integer
#Return the reference count of object. The count returned is generally
#one higher than you might expect, because it includes the (temporary)
#reference as an argument to getrefcount().
print(int.doc)
#help函數(shù)
print(help(int))
# 會(huì)影響其他變量
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。