打印不在没有括号的情况下工作(Python 2.7)

Print not working without parenthesis (Python 2.7)

本问题已经有最佳答案,请猛点这里访问。

当我在代码下面运行时,我得到"语法错误:语法无效"。 但是,如果我在打印后用括号运行此代码,我会得到正确的答案。

1
2
3
4
5
6
7
8
9
10
11
12
13
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

我想补充一点,这不是我在这个笔记本中运行的唯一东西,我(包括其他)包括一些包:

1
2
3
4
5
6
7
8
9
10
11
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

最后,我想补充一点,在新工作簿中,一切正常。 有没有人有想法,这可能是什么原因?


这导致了问题:from __future__ import print_function

这意味着您要将新的print_function从Python 3导入到Python 2.7中。 因此,需要括号。 更多关于未来的进口。


由于您从python 3 from __future__ import print_function导入print语句,因此无法在没有括号的情况下进行打印
https://docs.python.org/2/library/functions.html#print