目前的範圍有任何引用指向當前的範圍,我擡頭一看很多文章,並不能找到答案,比如我想打印每一個變種的內容在當前範圍如何讓蟒蛇
for x in list(locals()):
print(x)
但只給我這個,該變種的名稱
__builtins__
__file__
__package__
__cached__
__name__
__doc__
我不想這樣的代碼
print(__builtins__)
print(__file__)
print(__package__)
print(__cached__)
print(__name__)
print(__doc__)
....
下劃線變量是您當前範圍的一部分。如果你不想要它們,就跳過它們。 – gecco
@gecco他想打印變量的值,而不是跳過它們。在他的文章for循環打印變量的名稱,不存在vote – miracle173