1 2 3 4 5 6 7 8 9 10 11 12 13
[devel@s14-iki ~]$ cat foo.py print "my code" """ print "more code" print "even more code" """ print "the end." [devel@s14-iki ~]$ python foo.py my code the end. [devel@s14-iki ~]$