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

时间:2016-11-01 20:33:27

标签: python python-2.7 printing compiler-errors syntax-error

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

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

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

2 个答案:

答案 0 :(得分:6)

这导致了问题:from __future__ import print_function

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

答案 1 :(得分:1)

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