Method signature:
add(element_in)
Parameters:
element_in : The element that is be added to the Python set object.
Method Overview:
The add() method adds an element to an existing Python set object.
Example:
| 
			 # Example Python program that adds elements to an exisiting set # Add more elements  # Print the set updated with new elements   |