Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
87 views
in Technique[技术] by (71.8m points)

python - How to display the four properties in a toString method?

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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...