print em Python

Exemplo disponível em http://www.codecademy.com/pt-BR/glossary/python/print
>> # this will work in all modern versions of Python
>> print("some text here")
"some text here"

>> # but this only works in Python versions lower than 3.x
>> print "some text here too"
"some text here too"

Comentários