编辑代码

import ast

AST = ast.parse("""

""")

for node in ast.walk(AST):
    print(type(node))