Source Code:
(back to article)
my_set = {1, 2, 3} my_set.add(4) print(my_set) # {1, 2, 3, 4}
Result:
Report an issue