The program defines a dictionary named "student" which contains information about a student. The information includes the student's name, roll number, marks, age, gender, and city.
In summary, the program retrieves all the values from the "student" dictionary and prints each value on a separate line.
student = { "Name": "Tara", "RollNo":130046, "Mark": 458, "Age":16, "Gender":"Female", "City": "Chennai" } print(student.values()) print("\n==== Values ====") for v in student.values(): print(" ",v)
dict_values(['Tara', 130046, 458, 16, 'Female', 'Chennai']) ==== Values ==== Tara 130046 458 16 Female Chennai
Learn All in Tamil © Designed & Developed By Tutor Joes | Privacy Policy | Terms & Conditions