Created
December 4, 2019 09:21
-
-
Save geekscrapy/b52c74325d76a50ac456dba53a708006 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# https://github.com/daringjoker/Assembly-refrence | |
# Copy data_dict = {"AAA": {"Instruction... | |
data_dict = {"AAA": {"Instruction... | |
def pretty(d, indent=0): | |
for key, value in d.items(): | |
print('\t' * indent + str(key)) | |
if isinstance(value, dict): | |
pretty(value, indent+1) | |
else: | |
print('\t' * (indent+1) + str(value)) | |
pretty(data_dict) |
Author
geekscrapy
commented
Dec 4, 2019
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment