if else Python การสร้างเงื่อนไขแบบ if else ภาษา Python
บทความวันที่ 17 มีนาคม 2556
if else คือ คำสั่งสำหรับการสร้างเงื่อนไขแบบเลือกทำ โดยในภาษา Python นั้นมีการใช้คำสั่ง if และ elif ในการสร้างเงื่อนไขแบบเลือก
ภาพรวมของการใช้ if else บนภาษา Python
1. ใช้คำสั่ง if ในกรณีเงื่อนไขแรก
2. ใช้คำสั่ง elif ในการสร้างเงื่อนระหว่างเงื่อนไขแรก และเงื่อนไขสุดท้าย
3. ใช้คำสั่ง else ในกรณีเงื่อนไขสุดท้าย
ตัวอย่างโปรแกรม
>>> score = int(input("Please enter score : "))
Please enter score : 81
>>> if score >= 90:
print('Grade A')
elif score >= 80:
print('Grade B')
elif score >= 70:
print('Grade C')
elif score >= 60:
print('Grade D')
else:
print('Grade F')
Grade B
>>>
คำค้นหา if else python, รับทำเว็บ, รับเขียนเว็บ, เรียนเขียนโปรแกรม