Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In C++, \n is used, but what do I use in Python?

I don't want to have to use: print (" "). This doesn't seem very elegant.

Any help will be greatly appreciated!

share|improve this question
4  
Do you mean spaces or line breaks? – BrenBarn Sep 16 '12 at 21:02
4  
\n is a newline in C++. Not a space – Tony The Lion Sep 16 '12 at 21:03

4 Answers

If you need to separate certain elements with spaces you could do something like

print "hello", "there"

Notice the comma between "hello" and "there".

If you want to print a new line (i.e. \n) you could just use print without any arguments.

share|improve this answer
just using print does not seem to output newline? or cannot be used as an empty line? – Justin Chiang Sep 16 '12 at 21:10
print alone should output a new line, try running this: print "hello" ; print ; print "world", and the compare it with what would happen if you remove the middle print. – A. R. S. Sep 16 '12 at 21:13

A lone print will output a newline.

print

In 3.x print is a function, therefore:

print()
share|improve this answer

Any of the following will work:

print 'Hello\nWorld'

print 'Hello'
print 'World'

Additionally, if you want to print a blank line (not make a new line), print or print() will work.

share|improve this answer

Tryprint

Example:

print "Hello World!"
print
print "Hi!"

Hope this works!:)

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.