Computer Science, asked by SufiyanKhan, 1 year ago

Create 3 Tuples programme in python

Answers

Answered by Róunak
2
Hey mate..
=========

This program is to create 2 tuples in a program:--

>>> #Create an empty tuple
>>> x = ()
>>> print(x)
>>> #Create an empty tuple with tuple() function built-in Python
>>> tuplex = tuple()
>>> print(tuplex)

#racks

Róunak: is it okay try in your computer
Similar questions