online python shell inline execution

python interpreter online



Cómo ejecutar Python en línea desde un shell bash (3)

Esto funciona:

python -c ''print "Hi"'' Hi

¿Existe un argumento de Python para ejecutar código desde el shell sin iniciar un intérprete interactivo o leer un archivo? Algo similar a:

perl -e ''print "Hi"''


Otra forma es utilizar el módulo e

p.ej.

$ python -me 1 + 1 2


Otra forma es utilizar la redirección de bash:

python <<< ''print "Hi"''

Y esto funciona también con perl, ruby, y que no.