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)
APPEARS IN
संबंधित प्रश्न
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?
When to use a tuple or dictionary in Python. Give some examples of programming situations mentioning their usefulness.
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()]
Participating in a quiz can be fun as it provides a competitive element. Some educational institutes use it as a tool to measure the knowledge level, abilities, and/or skills of their pupils either on a general level or in a specific field of study. Identify and analyze popular quiz shows and write a Python program to create a quiz that should also contain the following functionalities besides the one identified by you as a result of your analysis.
- Create an administrative user ID and password to categorically add, modify, or delete a question.
- Register the student before allowing her or him to play a quiz.
- Allow selection of category based on the subject area.
- Display questions as per the chosen category.
- Keep the score as the participant plays.
- Display the final score.