Add list to set .update method

This commit is contained in:
Mert Gör 🇹🇷 2024-06-09 09:43:26 +03:00
parent 8061e474e2
commit 41a915eac4
Signed by: hwpplayer1
GPG key ID: 03E547D043AB6C8F
2 changed files with 5 additions and 0 deletions

View file

@ -1,5 +1,6 @@
2024-06-09 Mert Gör <mertgor@masscollabs.xyz>
* python/Python.pdf: add list to set
* python/Python.pdf: Kümeler (Sets) sayfa 79
* python/Python.pdf: Veri Yapılarının Açılması (Unpacing) sayfa 76

View file

@ -0,0 +1,4 @@
mert = set('mert')
gor = ['g','o','r']
mert.update(gor)
print(mert)