我很难理解 Idle 和 Pycharm 之间的区别

It is hard for me to understand the difference between Idle and Pycharm

如果我放一个简单的代码,比如

3 == 3

在 Pycharm 我可以看到它是 'true' 或 'false' 但在空闲时它显示为真。

而且我无法理解 Idle 和 Pycharm

之间的区别

在 pycharm

"D:\PHYTHON PROJECT\venv\Scripts\python.exe" C:/Users/UQO/.PyCharmCE2019.1/config/scratches/practice.py

进程已完成,退出代码为 0

空闲时

>>> 3==3
True

这是因为 python 的 shell 立即打印了先前操作的结果。但是如果你想在你的脚本中打印一些东西,你必须通过控制你的输出来明确地做到这一点。

试试这个

print(3 == 3)