Python 2.5 idle and print command How do I suppress a line feed?

2006-11-23 Thread notejam
Hi, I am having a problem with print statements always cause a line feed. I need to print a line of text, then the next print statement will start printing where the last one stopped rather than drop down a line. In basic we can do this with print "texst"; followed by next command print "text2"

Re: Python windows interactive.

2006-10-30 Thread notejam
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? Larry Bates wrote: > notejam wrote: > > I am trying to get started with a interactive version of P

Python windows interactive.

2006-10-30 Thread notejam
I am trying to get started with a interactive version of Python for windows and need some help. I have played with the tutorial, and now want to write a program. In basic language, I could write something like 10 print "hello" 20 print "Jim" and if I run it I would get hello Jim How do I do some