可以使用一個計數器變量來記錄循環次數,每次循環結束后將計數器變量加1。例如:
count = 0
while condition:
# 循環操作
count += 1
print("循環次數:", count)
或者使用for循環的內置函數enumerate()
來記錄循環次數。例如:
for count, item in enumerate(sequence):
# 循環操作
print("循環次數:", count+1) # count從0開始計數,所以最后需要加1