Python Set Add() - Programiz
Maybe your like
Become a certified Python programmer.
ENROLLPopular Tutorials
Getting Started With Python Python if Statement while Loop in Python Python Lists Dictionaries in Python Start Learning PythonPopular Examples
Add two numbers Check prime number Find the factorial of a number Print the Fibonacci sequence Check leap year Explore Python ExamplesReference Materials
Built-in Functions List Methods Dictionary Methods String Methods View allCreated with over a decade of experience.
- Learn
- Practice
- Compete
Certification Courses
Created with over a decade of experience and thousands of feedback.
Learn Python Learn HTML Learn JavaScript Learn SQL Learn DSA View all Courses onBecome a certified Python programmer.
Try Programiz PRO!Popular Tutorials
Getting Started With Python Python if Statement while Loop in Python Python Lists Dictionaries in Python Start Learning Python All Python TutorialsReference Materials
Built-in Functions List Methods Dictionary Methods String Methods View all Python JavaScript C C++ Java R KotlinBecome a certified Python programmer.
Try Programiz PRO!Popular Examples
Add two numbers Check prime number Find the factorial of a number Print the Fibonacci sequence Check leap year All Python ExamplesPython Set Methods
- Python Set remove()
- Python Set add()
- Python Set copy()
- Python Set clear()
- Python Set difference()
- Python Set difference_update()
- Python Set discard()
- Python Set intersection()
- Python Set intersection_update()
- Python Set isdisjoint()
- Python Set issubset()
- Python Set pop()
- Python Set symmetric_difference()
- Python Set symmetric_difference_update()
- Python Set union()
- Python Set update()
Python Tutorials
- Python Tuple index()
- Python Set clear()
- Python Tuple count()
- Python List index()
- Python List count()
- Python Dictionary fromkeys()
Python Set add() The add() method adds a given element to a set. If the element is already present, it doesn't add any element.
Example
prime_numbers = {2, 3, 5, 7} # add 11 to prime_numbers prime_numbers.add(11) print(prime_numbers) # Output: {2, 3, 5, 7, 11}Syntax of Set add()
The syntax of add() method is:
set.add(elem)add() method doesn't add an element to the set if it's already present in it.
Also, you don't get back a set if you use add() method when creating a set object.
noneValue = set().add(elem)The above statement doesn't return a reference to the set but 'None', because the statement returns the return type of add which is None.
Set add() Parameters
add() method takes a single parameter:
- elem - the element that is added to the set
Return Value from Set add()
add() method doesn't return any value and returns None.
Example 1: Add an element to a set
# set of vowels vowels = {'a', 'e', 'i', 'u'} # adding 'o' vowels.add('o') print('Vowels are:', vowels) # adding 'a' again vowels.add('a') print('Vowels are:', vowels)Output
Vowels are: {'a', 'i', 'o', 'u', 'e'} Vowels are: {'a', 'i', 'o', 'u', 'e'}Note: Order of the vowels can be different.
Example 2: Add tuple to a set
# set of vowels vowels = {'a', 'e', 'u'} # a tuple ('i', 'o') tup = ('i', 'o') # adding tuple vowels.add(tup) print('Vowels are:', vowels) # adding same tuple again vowels.add(tup) print('Vowels are:', vowels)Output
Vowels are: {('i', 'o'), 'e', 'u', 'a'} Vowels are: {('i', 'o'), 'e', 'u', 'a'}You can also add tuples to a set. And like normal elements, you can add the same tuple only once.
Also Read:
- Python Set update()
- Python Set remove()
Sorry about that.
How can we improve it? Feedback * Leave this field blankYour builder path starts here. Builders don't just know how to code, they create solutions that matter.
Escape tutorial hell and ship real projects.
Try Programiz PRO- Real-World Projects
- On-Demand Learning
- AI Mentor
- Builder Community
Python References
Python Library
Python Set clear()
Python Library
Python frozenset()
Python Library
Python Set update()
Python Library
Python Set remove()
Tag » How To Add To A Set Python
-
Set Add() In Python - GeeksforGeeks
-
Python - Add Set Items - W3Schools
-
Append Values To A Set In Python - Stack Overflow
-
Add Values To A Python Set - Techie Delight
-
How To Append To A Set In Python: Python Set Add() And Update()
-
Python Set Add() Method (With Examples) - TutorialsTeacher
-
Python Set – How To Create A Set In Python - FreeCodeCamp
-
How To Create Sets In Python - FreeCodeCamp
-
How To Add An Element To A Set In Python
-
Sets In Python - Real Python
-
Python: How To Add Or Append Values To A Set - ThisPointer
-
Python Set – Add()
-
How To Add A List To A Set In Python? - Studytonight
-
Python Set Add() Method With Examples - Javatpoint