[pyar] [Consulta] Programacion: Inserting Comma Separators

Matías Bellone matiasbellone en gmail.com
Jue Mar 15 18:24:33 ART 2012


On Thu, Mar 15, 2012 at 6:12 PM, DF-- <dj.foguelman en gmail.com> wrote:
>
>
> 2012/3/12 Claudio Freire <klaussfreire en gmail.com>
>>
>> print no es una función en python2 y por lo tanto no puede recibir un
>> parámetro (por keyword o no).
>
>
> $ python
> Python 2.6.5 (r265:79063, Apr 16 2010, 13:09:56)
> [GCC 4.4.3] on linux2
> Type "help", "copyright", "credits" or "license" for more information.
>>>> print("esto anda")
> esto anda
>
> No entiendo.
>

Porque eso es syntactic sugar. Tratá de hacer lo que querían hacer en
el mensaje original:

Python 2.7.2+ (default, Dec  1 2011, 01:55:02)
[GCC 4.6.2] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> print("hola")
hola
>>> print("hola", ",")
('hola', ',')
>>> print("hola", sep=",")
  File "<stdin>", line 1
    print("hola", sep=",")
                     ^
SyntaxError: invalid syntax

Saludos,
Toote



More information about the pyar mailing list