淘先锋技术网

首页 1 2 3 4 5 6 7

python循环结构如何只输出一遍?

同一行反复输出,就是重复执行的意思,为此可以写一个循环: index=0 while True: print "Hello" index=index+1 if index==50: break