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 Program to Check Whether a String is Palindrome or Not
Python Program to Find the Factors of a Number
Python Dictionary keys()
Python Program to Represent enum
Python Program to Count the Number of Digits Present In a Number
How to get current date and time in Python?
Python frozenset()
Deep Learning with Python - A Hands-on Introduction - Nikhil Ketkar
Python callable()
Introduction to Machine Learning with Python - Andreas C.Muller & Sarah Guido
Deep Learning with Applications Using Python - Navin Kumar Manaswi
Python Dictionary values()
Python Program to Solve Quadratic Equation
Python String rindex()
Python Program to Display Powers of 2 Using Anonymous Function
Python Set difference_update()
Python Tuple count()
Python Program to Calculate the Area of a Triangle
Python Program to Swap Two Variables
Python String isnumeric()
Python range()
Python Directory and Files Management
Python Program to Find ASCII Value of Character
Python Dictionary setdefault()
Python slice()
Python Program to Sort a Dictionary by Value
Python object()
Python Shallow Copy and Deep Copy
Python Set add()
Python Program to Count the Number of Each Vowel
Python round()
Python Deep Learning Cookbook - Indra den Bakker