Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Python

เทคนิคการวนรอบใน Python


ในบทช่วยสอนนี้ เราจะเรียนรู้เกี่ยวกับเทคนิคการวนซ้ำใน python 3.x หรือก่อนหน้านี้ มีหลายวิธีที่เราสามารถใช้ลูปได้ เราจะพูดถึงสี่เทคนิคในการวนรอบ

โครงสร้างการแจงนับ

ตัวอย่าง

# enumerate() type
for index, value in enumerate(['Tutorial','point']):
   print(index, value)

ผลลัพธ์

0 Tutorial
1 point

สร้างซิป

ตัวอย่าง

# zip() method
arr1 = ['Tutorial','point']
arr2 = ['python','loops']
for i,j in zip(arr1, arr2):
   print(i,j)

ผลลัพธ์

Tutorial python
point loops

โครงสร้างการเป็นสมาชิก

ตัวอย่าง

# membership operator
for i in ['Tutorial','point']:
   print(i)

ผลลัพธ์

Tutorial
point

โครงสร้างแบบอินฟินิตี้

ตัวอย่าง

# infinite loop
while(True):
   pass

โครงสร้างตามขั้นตอน

ตัวอย่าง

# range with step incrementer
For i in range(0,4,2):
   print(i)

ผลลัพธ์

0
2

บทสรุป

ในบทความนี้ เราได้เรียนรู้เกี่ยวกับเทคนิคการวนรอบใน Python 3.x หรือก่อนหน้านั้น