📜  python counter无限系列 - Python代码示例

📅  最后修改于: 2022-03-11 14:45:39.227000             🧑  作者: Mango

代码示例1
i = 0
while not there_is_reason_to_break(i):
    # some code here
    i += 1