inser elemts into a set in python
list1 = [1, 1, 2, 3, 4, 4, 5]
set1 = set(list1)
set1.add(6) # gets inserted in the set if it does not already exist
set1.add(5) # gets ignored as it already exists in the set
inser elemts into a set in python
list1 = [1, 1, 2, 3, 4, 4, 5]
set1 = set(list1)
set1.add(6) # gets inserted in the set if it does not already exist
set1.add(5) # gets ignored as it already exists in the set
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us