python-CSD-kursu/python/add_list_to_set.py

5 lines
68 B
Python

mert = set('mert')
gor = ['g','o','r']
mert.update(gor)
print(mert)