Warning: file_get_contents(/data/phpspider/zhask/data//catemap/7/python-2.7/5.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
不带括号的打印不工作(Python 2.7)_Python_Python 2.7_Printing_Compiler Errors_Syntax Error - Fatal编程技术网

不带括号的打印不工作(Python 2.7)

不带括号的打印不工作(Python 2.7),python,python-2.7,printing,compiler-errors,syntax-error,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, 3

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

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

最后,我想补充一点,在新的工作簿中,一切都正常工作。有人知道这是什么原因吗?

这是导致问题的原因:
来自未来的导入打印功能


这意味着您正在将新的print_函数Python 3导入Python 2.7。因此,需要括号。更多信息。

它应该不能在没有括号的情况下打印,因为您正在从Python3导入print语句