Table of Contents
The tuple() builtin can be used to create tuples in Python.
In Python, a tuple is an immutable sequence type. One of the ways of creating tuple is by using the tuple()
construct.
The syntax of tuple()
is:
tuple(iterable)
1. tuple() Parameters
- iterable (optional) – an iterable (list, range, etc.) or an iterator object
If the iterable is not passed to tuple()
, the function returns an empty tuple.
2. Example: Create tuples using tuple()
t1 = tuple() print('t1 =', t1) # creating a tuple from a list t2 = tuple([1, 4, 6]) print('t2 =', t2) # creating a tuple from a string t1 = tuple('Python') print('t1 =',t1) # creating a tuple from a dictionary t1 = tuple({1: 'one', 2: 'two'}) print('t1 =',t1)
Output
t1 = () t2 = (1, 4, 6) t1 = ('P', 'y', 't', 'h', 'o', 'n') t1 = (1, 2)
Recommended reading: Python Tuples
Related posts:
Python Global Keyword
Python Program to Illustrate Different Set Operations
Python Set add()
Python int()
Python Program to Extract Extension From the File Name
Python float()
Python Dictionary pop()
Python String rsplit()
Python oct()
Python Program to Display Fibonacci Sequence Using Recursion
Python Matrices and NumPy Arrays
Python String istitle()
Building Chatbots with Python Using Natural Language Processing and Machine Learning - Sumit Raj
Python Program to Make a Flattened List from Nested List
Python abs()
Python String swapcase()
Python Object Oriented Programming
Python File I/O Operation
Python List append()
Python for Loop
Python String center()
Python Machine Learning Third Edition - Sebastian Raschka & Vahid Mirjalili
Python Program to Convert String to Datetime
Python Dictionary items()
Python Program to Count the Number of Occurrence of a Character in String
Python String find()
Python Operator Overloading
Python String expandtabs()
Python delattr()
Python Variables, Constants and Literals
Python String capitalize()
Python Program to Find LCM