#Accessing Tuple
#with Indexing
Tuple1 = tuple("Softhunt")
print("
First element of Tuple: ")
print(Tuple1[1])
#Tuple unpacking
Tuple1 = ("Python", "Softhunt", "Tutorials")
#This line unpack
#values of Tuple1
a, b, c = Tuple1
print("
Values after unpacking: ")
print(a)
print(b)
print(c)