infinite print

Python

how to make an infinite print in python?
easy:
write in your python console this line of code:

while(true):

Enter fullscreen mode Exit fullscreen mode

and into the loop insert the instruction:

print("ti amo Lucre")

Enter fullscreen mode Exit fullscreen mode

the resul is:

while(true):
    print("ti amo Lucre")

Enter fullscreen mode Exit fullscreen mode

原文链接:infinite print

© 版权声明
THE END
喜欢就支持一下吧
点赞8 分享
Everyone there is a part of the living for others their own.
每个人都存在着那部分为别人而活的自己
评论 抢沙发

请登录后发表评论

    暂无评论内容