Python Program using a tuple
In this program, you will learn how to implement a tuple in Python.
tuple1 = (10, 20, 30, "Xiith.com")
Example: How to implement a tuple in Python
tuple1 = (10, 20, 30, "Xiith.com")
print("Tuple values are:", tuple1)
print("Printing tuple by using for loop")
for i in tuple1:
print(i)
Output:
Tuple values are: (10, 20, 30, 'Xiith.com')
Printing tuple by using for loop
10
20
30
Xiith.com