我无法在Pycharm中使用字典

时间:2018-11-05 07:51:22

标签: python dictionary pycharm

我无法在Pycharm中使用字典功能。我知道我的Pycharm设置肯定有问题,因为我可以运行极其简单的字典功能,并且实际上什么也没发生,但是如果我在外部控制台中使用相同的代码,它将按预期工作。

如果我编写此代码:

student = {'1': 'Bill', '2': 'Ted'}

print(student)

我明白了:

Process finished with exit code 0

那我的打印输出在哪里?

2 个答案:

答案 0 :(得分:0)

我只是在Pycharm中运行正常,并得到了以下结果:

{'1':'比尔','2':'Ted'}

以退出代码0结束的过程

我认为您只是缺少结果的第一行,该行紧接正在运行的python文件的路径之后。再检查一遍。 我使用过:Python 3.5和Pycharm的社区版本。

答案 1 :(得分:0)

如果您使用的是Comodo防病毒软件,它将阻止PyCharm中的运行输出。解决方案是禁用所有保护组件 enter image description here

enter image description here