สอนรับค่าจากแป้นพิมพ์ Python ด้วยคำสั่ง input ทั้งรับเป็นข้อความ (String) และตัวเลข (Integer) สามารถเขียนโปรแกรมได้ดังนี้
ตัวอย่าง รับค่าจากแป้นพิมพ์ Python
try:
name = input('What is you name : ')
age = int(input('How old are you : '))
except:
name = ''
age = 0
print('My name is '+str(name))
print(str(age)+' year old')
ผลลัพธ์
What is you name : Robot
How old are you : 20
My name is Robot
20 year old
1. ใช้คำสั่ง input รับค่าจากแป้นพิมพ์ภาษา Python โดยรับข้อมูลมาในรูปแบบของข้อความ (String)
2. ใช้คำสั่ง int คลุมคำสั่ง input เพื่อแปลงข้อความ (String) ให้เป็นตัวเลข (Integer)