我刚刚开始学习Python,并且在交互模式下对不同的String方法使用了help()函数。 例如:
>>> S = 'abcd'
>>> help(S.isdigit)
输出符合预期:
Help on built-in function isdigit:
isdigit(...)
S.isdigit() -> bool
Return True if all characters in S are digits
and there is at least one character in S, False otherwise.
(END)
不幸的是,无论我按哪个按钮(CTRL + D也不起作用),我似乎无法退出此提示。 我可以关闭终端,但这显然很麻烦。
我正在使用Ubuntu 16.04 LTS。
提前感谢任何建议!