Skip to content

KorakotTagonaun/Townschool

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

นี่คือตัวอย่างโปรแกรมสำหรับการเรียน OOP

วิธีติดตั้ง

เปิด CMD / Terminal

pip install Townschool

วิธีเล่น

เปิด IDLE ขึ้นมาแล้วพิมพ์...

from Townschool import Student,SpecialStudent
 
print('=======1 Jan=========')
student0 = SpecialStudent('Mark Zuckerberg','Bill Gates')
student0.AskEXP()
student0.Show_EXP()
student1 = Student('Albert')
print(student1.name)
student1.Hello()


print('------------------')
student2 = Student('Steve')
print(student2.name)
student2.Hello()
print('=======2 Jan=========')
print('---------uncle : ใครอยากเรียน Coding บ้าง? (10 XP)---------')
student1.AddEXP(10)

print('=======3 Jan=========')
student1.name = 'Albert Einstein'
print('ตอนนี้ exp ของแต่ละคนได้เท่าไรกันแล้ว')

print(student1.name,student1.exp)
print(student2.name,student2.exp)
print('=======4 Jan=========')

for i in range(5):
	student2.Coding()

student1.Show_EXP()
student2.Show_EXP()

พัฒนาโดย: Korakot Tagonaun FB: https://www.facebook.com/korakot.tagonaun/ YouTube: https://www.youtube.com/channel/UCfFzGOVRXd9uRS76qewU3Yg

About

No description, website, or topics provided.

Resources

License

MIT, MIT licenses found

Licenses found

MIT
LICENSE
MIT
LICENSE.txt

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages