0
我想列出列表中包含子模塊調用的所有函數調用。在我的情況下,它是os模塊的os_list。我想存儲os.path模塊調用的調用以及this.For函數調用的識別我正在使用「__call」,什麼是用於識別模塊。如何找到模塊中的子模塊調用
for name in dir(os):
attr = getattr(os, name)
if hasattr(attr, '__call__'):
os_list.append(name)
讓它更清晰一點。你正在試圖找到所有在當前或目標模塊中使用的'os'函數? – CommonSense