i = 1
j = 1
while i <= 10:
print('第%d个碗' % i)
while j <= 10:
if j == 5:
break
else:
print('这是内循环的第%d个碗' % j)
j += 1
i += 1

  

04-18 14:46