📌  相关文章
📜  打印所有变量 jupyter notebook - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:45.857000             🧑  作者: Mango

代码示例1
dir() #will give you the list of in scope variables:
globals() #will give you a dictionary of global variables
locals() #will give you a dictionary of local variables