a ve b listele

This commit is contained in:
Mert Gör 🇹🇷 2023-05-24 15:26:33 +03:00
parent 6ba9c72b3b
commit 752e3d413c
No known key found for this signature in database
GPG Key ID: 2100A876D55B39B9

4
python-temel/aveb.py Normal file
View File

@ -0,0 +1,4 @@
a = [1, 2, 3]
b = [10, *a, 20, 30]
print(b)