3
A
回答
2
當然可以,這是一個相當骯髒的方式做到這一點,但它是很好的調試等
from pprint import pprint
def getCurrentVariableState():
pprint(locals())
pprint(globals())
2
0
dir(...)
dir([object]) -> list of strings
If called without an argument, return the names in the current scope.
Else, return an alphabetized list of names comprising (some of) the attributes
of the given object, and of attributes reachable from it.
If the object supplies a method named __dir__, it will be used; otherwise
the default dir() logic is used and returns:
for a module object: the module's attributes.
for a class object: its attributes, and recursively the attributes
of its bases.
for any other object: its attributes, its class's attributes, and
recursively the attributes of its class's base classes.
0
globals()和當地人()返回各自分別代表全局和局部範圍的符號表的字典。
相關問題
- 1. 打印變量的名稱
- 2. Python:輕鬆打印變量名稱和值
- 3. 打印$ _POST變量名稱以及值
- 4. 如何在Tensorflow中打印並加載所有變量的名稱和值
- 5. Ruby - 打印變量名稱,然後打印它的值
- 6. 打印一個變量作爲對象名稱的值python
- 7. 打印所有已定義的變量和值
- 8. 在類中打印所有變量? - Python
- 9. 如何打印名稱和值的類的實例變量?
- 10. 打印所有變量?
- 11. 數據綁定BR沒有顯示所有變量名稱
- 12. 轉儲或打印變量的名稱
- 13. 打印CVS輸入的變量名稱
- 14. 在Matlab中打印變量名稱
- 15. 使用smarty打印變量名稱
- 16. 打印出變量名稱objective-C
- 17. 是否可以打印變量名稱?
- 18. 如何打印變量名稱
- 19. 在#define中打印變量名稱
- 20. 如何遍歷所有ENV變量的打印鍵和值?
- 21. 使用打印作爲python中的變量名稱
- 22. 打印名稱和宏的值
- 23. 如何在bash中按名稱打印變量的值
- 24. 腳本打印變量的名稱而不是其值
- 25. 打印Python文件的所有常量
- 26. 打印C類中的所有變量#
- 27. PHP命名爲恆定打印/ concats作爲變量名稱,而不是值
- 28. 特定行的python打印變量
- 29. Python Lambdas和變量綁定
- 30. 如何打印變量和數組的名稱?
這甚至還沒有接近所有綁定變量 – aaronasterling 2010-09-24 05:39:30