สอนหาคำใน List ภาษา Python ด้วยคำสั่ง if ร่วมกับคำสั่ง in และ not in สามารถเขียนโปรแกรมได้ดังนี้
ตัวอย่าง หาคำใน List Python ด้วย in และ not in
l = ['apple', 'banana', 'orange']
if( 'banana' in l ):
print('banana found')
if( 'berry' not in l ):
print('berry not found')
ผลลัพธ์
banana found
berry not found
1. ตัวแปร l เป็นชนิด List มีค่าข้อมูล 3 ค่า คือ apple, banana, orange
2. กรณีต้องการหาคำใน List แนะนำให้ใช้ if ร่วมกับคำสั่ง in เช่น if( 'banana' in l ) แปลว่า ถ้ามีคำว่า banana อยู่ในตัวแปร l ให้เข้าไปทำในคำสั่ง if
3. กรณีต้องการหาว่าคำนี้ไม่มีอยู่ใน List แนะนำให้ใช้ if ร่วมกับ not in เช่น 'berry' not in l แปลว่า ถ้า berry ไม่มีอยู่ในตัวแปร i ให้เข้าไปทำในคำสั่ง if