
- Python Basic Tutorial
- Python - Home
- Python - Overview
- Python - Environment Setup
- Python - Basic Syntax
- Python - Comments
- Python - Variables
- Python - Data Types
- Python - Operators
- Python - Decision Making
- Python - Loops
- Python - Numbers
- Python - Strings
- Python - Lists
- Python - Tuples
- Python - Dictionary
- Python - Date & Time
- Python - Functions
- Python - Modules
- Python - Files I/O
- Python - Exceptions
How to create an empty tuple in Python?
You can create empty tuple object by giving no elements in parentheses in assignment statement. Empty tuple object is also created by tuple() built-in function without any arguments
>>> T1 = () >>> T1 () >>> T1 = tuple() >>> T1 ()
- Related Articles
- How to create an empty list in Python?
- How to create an empty dictionary in Python?
- How to create an empty class in Python?
- How to initialize a tuple to an empty tuple in C#?
- How to create an empty file using Python?
- How to create an empty VIEW in MySQL?
- How to create an empty matrix in R?
- How to create an empty array in Kotlin?
- How to create an empty PySpark dataframe?
- How to create an empty data frame in R?
- Python Program to check if the tuple is empty
- Python Program to create a Tuple using tuple literal
- How to create an empty plot using ggplot2 in R?
- How to create LabelValue Tuple from an array in Java
- How to write an empty function in Python?

Advertisements