The program is written in Python and it declares a tuple named a with six elements: "Lion", "Cat", "Dog", "Panda", "Tiger", and "Fox". The len function is then used to find the length of the tuple, which is 6. Finally, the length is printed with the string "Length :" using the print function.
a = ("Lion","Cat","Dog","Panda","Tiger","Fox") print("Length :",len(a))
Length : 6
Learn All in Tamil © Designed & Developed By Tutor Joes | Privacy Policy | Terms & Conditions