doraemon的python之旅 while循环

count=1                                       whlie True:

while True:                                    countt = 1

  print(count)        比较                  print(count)

count=count + 1                                 count=count + 1

     例子1                                                 例子2

#循环开始的位置不一样,例子1打印的是自然数,例子2打印的是1111111........

print("爱你呦”)

一个程序员要学会用快捷键   pycharm——crtl + /    #多行注释

原文地址:https://www.cnblogs.com/doraemon548542/p/11047776.html