w3resource

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


11. Create a Class Named Student with Attributes and a Function to Display All Attributes and Values

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.

For more Practice: Solve these Related Problems:

  • Write a Python class Student with attributes student_id and student_name, add an extra attribute, and implement a method to print all attributes and their values.
  • Write a Python program to instantiate a Student class and then iterate over its __dict__ to display key-value pairs.
  • Write a Python program to use the vars() function on a Student object and print the resulting dictionary of attributes.
  • Write a Python program to implement a function that accepts an object and prints its attribute names and values in a formatted table.

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.