Create a Python program to manage student information using class attributes and instance attributes.
Define a class named Student with the following requirements:
school_name with the value "Ghazi University".Instance attributes:
nameroll_nomarksThese instance attributes should be initialized using the constructor __init__().
Display each student’s:
school_name to another value and show that the change affects all student objects.marks of only one student and demonstrate that other students’ marks remain unchanged.display_info() to print the complete student information.School: Ghazi University
Name: Ali
Roll No: 101
Marks: 85
By completing this practical exam, students will be able to:
Based on concepts from Python class and instance attributes. (Learn with Yasir)