# School 클래스에는 학생 명단(student_list)이 있고, Student 클래스는 학생의 이름과 나이를 가진다. 
# 학생 객체를 학교에 등록하고, 학생이 "나는 어떤 학교에 다닌다"고 말할 수 있도록 코드를 작성하시오.





# school = School("파이썬 중학교")
# student = Student("민수", 13)
# school.addStudent(student)
# student.introduce(school)


# Library 클래스는 책 목록(book_list)을 가지고 있으며, Book 클래스는 책 이름과 저자를 가진다. 
# 책을 도서관에 추가하고, 책이 스스로 어떤 도서관에 있는지 출력할 수 있도록 하시오.

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: