# tuplet1=()print(t1)# single item tuplet2=(1,)print(t2)# homogenoust3=(1,2,3)print(t3)# heterogenoust4=(1,2.3,True,'hello')print(t4)# tuple in tuplet5=(1,2,3,(4,5))print(t5)# using type conversiont6=tuple((1,2,3,'Rudra','z'))print(t6)
# len/ max/ min/ sortedt=(1,2,3,4,5,1,1)print('Lenth of the tuple is :',len(t))print('Max of the tuple is :',max(t))print('Min of the tuple is :',min(t))print('Sorted tuple is :',sorted(t,reverse=True))