Removed a line to print all the dict instead of the 33rd element

This commit is contained in:
TheDevKiller 2018-11-08 12:49:55 +01:00
parent 2e173546ef
commit 11fbb27fbb

View File

@ -42,7 +42,6 @@ if __name__ == '__main__':
# Print the dict (keep this code in the end of the file) # Print the dict (keep this code in the end of the file)
print("===== Dict =====") print("===== Dict =====")
for index, area in enumerate(diclist): for index, area in enumerate(diclist):
if index == 33: print(f"\n-------------{index}----------------\n")
print(f"\n-------------{index}----------------\n") for element in area:
for element in area: print(f" {element}: {diclist[index][element]}")
print(f" {element}: {diclist[index][element]}")