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

N

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 how do I do that in python?
 
W

Will McGugan

notejam said:
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 how do I do that in python?

Thusly...

print "texst",
print "text2"
 
W

Will McGugan

notejam said:
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 how do I do that in python?

Or if you want to get rid of the space...

import sys
sys.stdout.write("texst")
sys.stdout.write("text2")
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
474,432
Messages
2,571,682
Members
48,796
Latest member
Greg L.

Latest Threads

Top