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

2006-11-25 Thread Steve
See http://www.ferg.org/projects/python_gotchas.html#contents_item_4 -- http://mail.python.org/mailman/listinfo/python-list

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 So

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

2006-11-23 Thread Will McGugan
notejam wrote: 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

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

2006-11-23 Thread Will McGugan
notejam wrote: 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