Write a student class that has four properties (private variables): date of birth, name, ID number, and grade level. Write getters and setters for each property. Finally, write a toString() method that displays the student in the following format:
Name
ID number
Date of Birth
Grade Level
I have sat the getters and setters for my code and I have to put in the name, id, grade level, and date of birth which are presented at the beginning of the code as comments. Here is how I defied mine and I've sat getters and setters for each of the variables. This is just the defining init part
class Student:
def __init__(self, name, id_num, dob, grade_level):
self.__name = name
self.__id_num = id_num
self.__dob = dob
self.__grade_level = grade_level
How can I get it to display like this and how would I put the birthdate as a string?
Javier
31036
10/26/2020
12
question from:
https://stackoverflow.com/questions/65646109/how-to-display-the-four-properties-in-a-tostring-method 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…