python-CSD-kursu/python-temel/kume.py
2023-06-12 12:23:52 +03:00

4 lines
63 B
Python

a = [1, 3, 5, 7, 9]
b = {x + y for x in a for y in a}
print(b)