Re: Python windows interactive.



notejam wrote:
Thanks everyone for the help. I got a simple two line program to work
from a text file.
Can not figure out how to write more than one line in interpreter mode.
Is that all interpreter is good for, testing one liners? I have it
run the program everytime I hit return, and can not figure out how to
enter multiple lines of code. I can do multiple lines in text file, so
no problem, but I am jsut wondering can a program with 2 or more lines
be wrote from the interpreter mode?

I think for this purpose you can just define a function, like this:

def test():
... print "Hello"
... print "World"
...
test()
"Hello"
"World"




___________________________________________________________
雅虎免费邮箱-3.5G容量,20M附件
http://cn.mail.yahoo.com/
.



Relevant Pages

  • Re: Python windows interactive.
    ... Can not figure out how to write more than one line in interpreter mode. ... I can do multiple lines in text file, ... There are some integrated environments for working in python. ... IDLE already comes with your Python installation. ...
    (comp.lang.python)
  • Re: Python windows interactive.
    ... Can not figure out how to write more than one line in interpreter mode. ... run the program everytime I hit return, and can not figure out how to ... I can do multiple lines in text file, ... so you can assign values to variables, and refer to them later. ...
    (comp.lang.python)