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

### วิธีติดตั้ง

เปิด CMD / Terminal

```python
pip install nuttawanphan
```

### วิธีเล่น

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

```python
from nuttawanphan import Student, SpecialStudent

print('====== 1 Jan =======')
student0 = SpecialStudent('Mark Zuckerberg','Bill Gates')
student0.AskEXP()
student0.ShowExp()

student1 = Student('Albert')
print(student1.name)
student1.Hello()

print('------------')
student2 = Student('Steve')
print(student2.name)
student2.Hello()

print('====== 2 Jan =======')
print('-----ใครอยากเรียนโค้ดดิ้งบ้าน?---(ใครเรียนได้ 10 exp)--')
student1.AddEXP(10)


print('====== 3 Jan =======')

student1.name ='Albert Einstine'
print('ตอนนี้ exp ของแต่ละคนได้เท่าไร?')
print(student1.name, student1.exp)
print(student2.name, student2.exp)

print('====== 4 Jan =======')

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

student1.ShowExp()
student2.ShowExp()

```





พัฒนาโดย: Nuttawan Phan
FB: https://www.facebook.com/NuttawanPhan





