Python学习之while

python学习网 2019-12-21 19:24:48

count = 0
while count <= 5:
  print('人生苦短,我用Python!', 'count = ', count)
  count += 1

阅读(2474) 评论(0)