25 Program to create a set, add member(s) in a set and remove one item from set in Python Atharva Satyendra Agrawal February 08, 2020 Atharva Satyendra Agrawal Program: var_set = set([10,20,30]) print(var_set) var_set.add(50) print(var_set) var_set.pop() print(var_set) Output: Tweet Share Share Share Related Post