$ python
Python 2.6.6 (r266:84292, Jan 22 2014, 09:42:36)
[GCC 4.4.7 20120313 (Red Hat 4.4.7-4)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> def add(x,y): return x+y
... reduce(add, range(1, 11))
File "<stdin>", line 2
reduce(add, range(1, 11))
^
SyntaxError: invalid syntax
I am new to python.
Any idea?
I am guessing reduce()
isn't available in 2.6.6; is there a way to check? I only see 2.6.9 online document, which has reduce()
.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…