हिंदी
तमिलनाडु बोर्ड ऑफ सेकेंडरी एज्युकेशनएचएससी विज्ञान कक्षा १२

What is a nested tuple? Explain with an example. - Computer Science

Advertisements
Advertisements

प्रश्न

What is a nested tuple? Explain with an example.

संक्षेप में उत्तर

उत्तर

  • In Python, a tuple can be defined inside another tuple; called a Nested tuple.
  • In a nested tuple, each tuple is considered an element.
  • The for loop will be useful to access all the elements in a nested tuple.

Example:

Toppers = ((“Vinodini”, “XII-P”, 98.7),
Ç’Soundarya”, “XII-H”, 97.5),
(“Tharani”, “XII-P”, 95.3),
(“Saisri”, “XII-G”, 93.8))
for j in Toppers:
print(i)

Output:
(Vinodini’, ‘XII-F’, 98.7)
(Soundarya’, ‘XII-H’, 97.5)
(Tharani’, ‘XII-F’, 95.3)
(‘Saisri’, ‘XII-G’, 93.8)
shaalaa.com
Tuples
  क्या इस प्रश्न या उत्तर में कोई त्रुटि है?
अध्याय 9: Lists, Tuples, Sets and Dictionary - Evaluation [पृष्ठ १६९]

APPEARS IN

सामाचीर कलवी Computer Science [English] Class 12 TN Board
अध्याय 9 Lists, Tuples, Sets and Dictionary
Evaluation | Q 3. | पृष्ठ १६९

संबंधित प्रश्न

What is the use of the type() function in python?


Write the syntax of creating a Tuple with n number of elements.


What are the advantages of Tuples over a list?


“Lists and Tuples are ordered”. Explain.


What advantages do tuples have over lists?


Prove with the help of an example that the variable is rebuilt in case of immutable data types.


TypeError occurs while statement 2 is running. Give reason. How can it be corrected?

>>> tuple1 = (5)         #statement 1
 >>> len(tuple1)         #statement 2

Write a program to read the email IDs of n number of students and store them in a tuple. Create two new tuples, one to store only the usernames from the email IDs and the second to store domain names from the email IDs. Print all three tuples at the end of the program. [Hint: You may use the function split()]


Write a program to input the names of n students and store them in a tuple. Also, input a name from the user and find if this student is present in the tuple or not. We can accomplish these by:

writing a user-defined function


Our heritage monuments are our assets. They are a reflection of our rich and glorious past and an inspiration for our future. UNESCO has identified some Indian heritage sites as World heritage sites. Collect the following information about these sites:

  • What is the name of the site?
  • Where is it located?
    District
    State
  • When was it built?
  • Who built it?
  • Why was it built?
  • The website link (if any).

Write a Python program to

  • create an administrative user ID and password to add, modify or delete an entered heritage site in the list of sites.
  • display the list of world heritage sites in India.
  • search and display information about a world heritage site entered by the user.
  • display the name(s) of world heritage site(s) on the basis of the state input by the user.

Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×