Programming Examples
Python program to create a nested tuple to store roll number name and marks of students
write a program to create a nested tuple to store roll number, name and marks of students.
Output/ Explanation:
Enter a roll number : 101
Enter name :sam
Enter marks :567
Do you want add another record (if yes the pres Y ) :y
Enter a roll number : 102
Enter name :zaq
Enter marks :400
Do you want add another record (if yes the pres Y ) :n
((101, 'sam', '567'), (102, 'zaq', '400'))