Python | tuple() Function
The tuple() function is a built-in function in Python that can be used to create a tuple.
A tuple is an immutable sequence type.
Syntax:
tuple(iterable)
Parameters: This function accepts a single parameter iterable (optional). It is an iterable(list, range etc..) or an iterator object. If an iterable is passed, the corresponding tuple is created. If the iterable is not passed, empty tuple is created .
Returns: It does not returns any-thing but creates a tuple.
Error and Exception: It returns a TypeError, if an iterable is not passed.
Below programs illustrate tuple() function in Python:
Program 1: Program demonstrating the use of tuple() function
# Python3 program demonstrating # the use of tuple() function # when parameter is not passed tuple1 = tuple() print(tuple1) # when an iterable(e.g., list) is passed list1= [ 1, 2, 3, 4 ] tuple2 = tuple(list1) print(tuple2) # when an iterable(e.g., dictionary) is passed dict = { 1 : 'one', 2 : 'two' } tuple3 = tuple(dict) print(tuple3) # when an iterable(e.g., string) is passed string = "geeksforgeeks" tuple4 = tuple(string) print(tuple4) |
Output:
()
(1, 2, 3, 4)
(1, 2)
('g', 'e', 'e', 'k', 's', 'f', 'o', 'r', 'g', 'e', 'e', 'k', 's')
Program 2: Program demonstrating the TypeError
# Python3 program demonstrating # the TypeError in tuple() function # Error when a non-iterable is passed tuple1 = tuple(1) print(tuple1) |
Output:
Traceback (most recent call last):
File "/home/eaf759787ade3942e8b9b436d6c60ab3.py", line 5, in
tuple1=tuple(1)
TypeError: 'int' object is not iterable
Recommended Posts:
- Python | Sort tuple list by Nth element of tuple
- Python | Replace tuple according to Nth tuple element
- Python | Mean of tuple list
- Unpacking a Tuple in Python
- Python | Reversing a Tuple
- Python | Removing strings from tuple
- Python | Difference Between List and Tuple
- Python | Split tuple into groups of n
- Python | Find whether all tuple have same length
- Python | Convert a list into a tuple
- Python | Unpacking tuple of lists
- Python | Remove Consecutive tuple according to key
- Python | Sort lists in tuple
- Python | Add tuple to front of list
- Python | Get all tuple keys from dictionary
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.
Improved By : Akanksha_Rai



