w3resource

Python: Create a function to display the entire attribute and their values in a given class

Python Class ( Basic ): Exercise-11 with Solution

Write a Python class named Student with two attributes: student_id, student_name. Add a new attribute: student_class. Create a function to display all attributes and their values in the Student class.

Sample Solution:

Python Code:

class Student:
    student_id = 'V10'
    student_name = 'Jacqueline Barnett'
    def display():
        print(f'Student id: {Student.student_id}\nStudent Name: {Student.student_name}')
print("Original attributes and their values of the Student class:")
Student.display()

Sample Output:

Original attributes and their values of the Student class:
Student id: V10
Student Name: Jacqueline Barnett

Flowchart:

Flowchart: Create a function to display the entire attribute and their values in a given class.

Python Code Editor:

Contribute your code and comments through Disqus.

Previous: Write a Python class named Student with two attributes student_id, student_name. Add a new attribute student_class and display the entire attribute and their values of the said class. Now remove the student_name attribute and display the entire attribute with values.
Next: Write a Python class named Student with two instances student1, student2 and assign given values to the said instances attributes. Print all the attributes of student1, student2 instances with their values in the given format

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Follow us on Facebook and Twitter for latest update.