GRADE XI PYTHON - TUPLE A tuple is a sequence data type of Python that are used to store objects of different data types in a given order. #Creating a tuple through input() and tuple( ) method t1 = tuple(input("value -")) print(t1) >>>value -1234 #Creating tuple by accepting data from user using Looping statements When data are accepted from user into a tuple using while loop, the entered data is concatenated in the tuple using + (concatenation) operator. Example: Accepting n elements from user into a tuple using while loop T1 = () #Empty tuple n = int(input("Enter number of elements")) i= 0 while i< n: num=eval(input("Enter the elements -")) T1+= (num,) # T1+= num, i+=1 print(T1) Accepting n elements from user into a tuple using for loop T1 = () #Empty Tuple n = int(input("Enter number of elements")) for i in range(n): T1+= eval(input("elements")), print(T1) Tuple object with single element To ...