mirror of
https://github.com/ada-dmitry/lab6.git
synced 2026-09-24 09:20:15 +00:00
8 lines
117 B
Python
8 lines
117 B
Python
a = dict()
|
|
|
|
for i in range(1, 41, 2):
|
|
for j in range(2, 41, 2):
|
|
a[f"{i}"] = f"{j}"
|
|
|
|
print(a)
|
|
|