si algo va mal, siempre puede tratar de pedir ayuda:
>>> help(print)
Help on built-in function print in module builtins:
print(...)
print(value, ..., sep=' ', end='\n', file=sys.stdout)
Prints the values to a stream, or to sys.stdout by default.
Optional keyword arguments:
file: a file-like object (stream); defaults to the current sys.stdout.
sep: string inserted between values, default a space.
end: string appended after the last value, default a newline.
y no se pueden ver, tha la sintaxis de ese print
cosa es print(something)
curioso es que en Python 2, se obtiene simplemente un mensaje de error:
>>> help(print)
SyntaxError: invalid syntax
es porque en Python < 3, print
función no era una función, sino una palabra clave (como por ejemplo, for
o or
)
Ver [ error de sintaxis de Python en la impresión ] (http://stackoverflow.com/questions/826948/python-syntax-error-on-print). –
Instale Python 2.7 (o lea la documentación) –