# ตัวอย่างโปรแกรมการเรียน   OOP

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

เปิด CMD / Terminal

```python
pip install Ingmai001
```

### วิธีเล่น

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

```python
form Ingmai001 import Student,SpecialStudent
print('======= 1 Jan 2021==========')
student0 = SpecialStudent('Mark Zucherberg','Bill Gates')
student0.ShowExp()
student0.AskExp()

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

print('-------')
student2 = Student('Steve')
print(student2.name)
student2.Hello()
print('======= 2 Jan 2021==========')
print('-----ใครอยากเรียน coding?----(10 exp)---')
student1.AddExp(10)

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

print(student1.name,student1.exp)
print(student2.name,student2.exp)

```


พัฒนาโดย: Ruchaneechol

