gpt4 book ai didi

python - 通过等待用户按键来暂停循环的最简单方法是什么?

转载 作者:行者123 更新时间:2023-11-28 21:26:45 25 4
gpt4 key购买 nike

在 Python 中,暂停用户按键将重新开始循环的循环的最简单和最 Pythonic 的方法是什么?我正在考虑将此作为调试辅助工具,以便我可以从循环内将一些调试消息输出到标准输出,而无需一次转储大量文本。

最佳答案

如果您愿意将按键限制为 Enter 键,您可以使用 input(Python 2 中的 raw_input)。否则,您将需要特定于平台的东西。

for i in range(10):
print(i)
input() # Loop continues after <Enter> is pressed

或者,您可以使用 pdb , Python 的内置调试器。

另见 Python read a single character from the user .

关于python - 通过等待用户按键来暂停循环的最简单方法是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12287242/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com