ส่วนอื่น ๆ ในลูป (สำหรับในขณะที่) จะดำเนินการหลังจากการวนซ้ำทั้งหมดเสร็จสิ้นและก่อนที่โปรแกรมจะไหลออกจากเนื้อหาของลูป ไวยากรณ์มีดังนี้ −
ไวยากรณ์
while expr==True: #statements to be iterated while expr is true. else: #this statement(s) will be executed afteriterations are over
#สิ่งนี้จะดำเนินการหลังจากโปรแกรมออกจากเนื้อหาลูป
ตัวอย่าง
for x in range(6): print (x) else: print ("else block of loop") print ("loop is over")
ผลลัพธ์
ผลลัพธ์เป็นดังแสดงด้านล่าง −
0 1 2 3 4 5 else block of loop loop is over