python-CSD-kursu/python-temel/aveb.py
2023-05-24 15:26:33 +03:00

4 lines
47 B
Python

a = [1, 2, 3]
b = [10, *a, 20, 30]
print(b)