gpt4 book ai didi

python - 放弃多行 Python 语句

转载 作者:太空宇宙 更新时间:2023-11-04 01:19:33 25 4
gpt4 key购买 nike

我敢肯定这个问题以前肯定有人问过,但我一辈子都找不到它。

在 Python 控制台,如果我输入一行需要缩进 block ,提示会相应地改变,如本例所示:

>>> for i in range(50):
...

如何优雅地放弃这个命令?

这很重要,因为有时我有很多左括号,放弃命令变成了一个游戏,计算在抛出 Python 异常之前我必须关闭多少个不同类型的括号,我点击返回:

>>> my_obj((((([[[(((
... # How do I get back to the normal prompt from here?

最佳答案

使用CTRL-C 中止语句:

>>> for foo in bar:
... ^C
KeyboardInterrupt

引自"The Interpreter and Its Environment" section of the Python tutorial :

Typing the interrupt character (usually Control-C or DEL) to the primary or secondary prompt cancels the input and returns to the primary prompt.

关于python - 放弃多行 Python 语句,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22151747/

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