Print not working without parenthesis (Python 2.7)

14 浏览
0 Comments

Print not working without parenthesis (Python 2.7)

这个问题已经在此处有答案了:

什么是Python中“SyntaxError:Missing parentheses in call to\'print\'”的含义?

当我运行以下代码时,我会收到“Syntax Error:invalid syntax”的错误。但是,如果我在print后面加上括号,我会得到正确的答案。

liczby = [
951, 402, 984, 651, 360, 69, 408, 319, 601, 485, 980, 507, 725, 547, 544,
615, 83, 165, 141, 501, 263, 617, 865, 575, 219, 390, 984, 592, 236, 105, 942, 941,
386, 462, 47, 418, 907, 344, 236, 375, 823, 566, 597, 978, 328, 615, 953, 345,
399, 162, 758, 219, 918, 237, 412, 566, 826, 248, 866, 950, 626, 949, 687, 217,
815, 67, 104, 58, 512, 24, 892, 894, 767, 553, 81, 379, 843, 831, 445, 742, 717,
958, 609, 842, 451, 688, 753, 854, 685, 93, 857, 440, 380, 126, 721, 328, 753, 470,
743, 527]
for x in liczby:
    if x == 237:
        break
    if x % 2 == 0:
        print x

我想补充一下,这不是我在这个笔记本中运行的唯一代码,我还包括了一些软件包:

from __future__ import print_function
import matplotlib.pyplot as plt
import numpy as np
import os
import sys
import tarfile
from IPython.display import display, Image
from scipy import ndimage
from sklearn.linear_model import LogisticRegression
from six.moves.urllib.request import urlretrieve
from six.moves import cPickle as pickle

最后,我想补充一下,在一个新的工作簿中,所有的东西都能正常运行。有人有什么想法,什么可能是这个原因吗?

admin 更改状态以发布 2023年5月25日
0
0 Comments

由于您正在从Python 3导入打印语句from __future__ import print_function,因此不应该能够在没有括号的情况下打印。
https://docs.python.org/2/library/functions.html#print

0
0 Comments

这是问题的原因: from __future__ import print_function

这意味着您正在将Python 3中的新print_function导入Python 2.7。 因此,需要使用括号。 更多关于future imports

0