Atom编辑器:运行时语法错误,语法完美无缺

时间:2019-05-27 11:42:38

标签: python atom-editor

我正在使用原子文本编辑器以及以下插件:

我正在尝试在原子内使用此简单的单行脚本运行(Ctrl + Shift + B)文件:

print('weird', end='stuff')

这是输出:

[Command: python -u /home/tonio/Desktop/Python_Scripts/this.py]
  File "/home/tonio/Desktop/Python_Scripts/this.py", line 1
    print('weird', end='stuff')
                      ^
SyntaxError: invalid syntax
[Finished in 0.056s]

那里绝对没有语法错误,但是解释器说那里。

当我在终端中运行同一行时,一切正常:

tonio@computer:~$ python3
Python 3.7.3 (default, Mar 27 2019, 22:11:17) 
[GCC 7.3.0] :: Anaconda, Inc. on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> print('weird', end='stuff')
weirdstuff>>> 

0 个答案:

没有答案