5) operation of tuple :  check method of index
t6 = (“dark horse programmer”,“widsomConvey”,“Python”)
index = t6.index(“python”) # case sensitive for python and Python
index = t6.index(“Python”)
print(“the index of ‘python’ is % d” % index)
print(f"the index of python is {index}")