Rework of module 03

This commit is contained in:
2026-02-12 11:35:37 +01:00
parent 05a3ddc8b6
commit 161ab4339c
6 changed files with 130 additions and 67 deletions

View File

@@ -83,10 +83,19 @@ def comprehension_tester(
try:
print("=== game Analytics Dashboard ===\n")
list_comprehension_example(data)
except Exception as err:
print(err)
try:
print()
dict_comprehension_example(data)
except Exception as err:
print(err)
try:
print()
set_comprehension_example(data)
except Exception as err:
print(err)
try:
print()
combined_analysis(data)
except Exception as err: