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
暂无评论内容