Re: IndentationError: expected an indented block

2006-09-02 Thread casioculture
Hendrik van Rooyen wrote: > <[EMAIL PROTECTED]> Wrote: > > > | > | Haha. How can I fix this! > | > | > | > > Use either tabs, or spaces, but not both > > - Hendrik Haha. I know. I just find it silly that a language insists on indentation. I'd long known it but just was reminded of it when I m

IndentationError: expected an indented block

2006-09-01 Thread casioculture
Haha. How can I fix this! -- http://mail.python.org/mailman/listinfo/python-list

Re: Guido at Google

2005-12-22 Thread casioculture
Ilias Lazaridis wrote: > Greg Stein wrote: > > Yeah... we recognize that we could certainly open-source more of our > > software. While we've released some stuff > > (code.google.com/projects.html), there is a LOT more that we want to > > http://code.google.com/projects.html > > > do. Getting engi

How do you do this in python?

2005-11-04 Thread casioculture
In bash, you'd do this with the perl interpreter Issue the perl command via -e switches on the shell command line: perl -e 'print "Hello, world\n"' or Pass your script to Perl via standard input: echo "print 'Hello, world'" | perl - How would you do the above with the python interpreter in bas