gpt4 book ai didi

python - python解释器上的简单if语句

转载 作者:太空狗 更新时间:2023-10-30 00:53:22 24 4
gpt4 key购买 nike

环境:

  • Fedora 27 (GNU/Linux)
  • 终端
  • python3.6.3

我在 python 解释器中运行这行简单的代码时遇到问题,这是一个 only if 语句或单独的 if 语句。

n = 5
if n == 4:
print('n=4')
print('done')

enter image description here

这必须打印“完成”一词,但我做错了什么?

最佳答案

解释器在 block 后给你一行留空,让解释器知道你的 block 已经结束(或放置一个else,等等)。把东西放在那里会让它发疯。只需将该行留空并等待下一个 >>>,然后再执行 print('done')

>>> n = 5
>>> if n == 4:
... print('n=4')
...
>>> print('done')
done

关于python - python解释器上的简单if语句,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47841510/

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