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!
|
In C++, I don't want to have to use:
Any help will be greatly appreciated! |
||||
|
If you need to separate certain elements with spaces you could do something like
Notice the comma between "hello" and "there". If you want to print a new line (i.e. |
|||||
|
|
A lone
In 3.x
|
||||
|
|
|
Any of the following will work:
Additionally, if you want to print a blank line (not make a new line), |
|||
|
|
\nis a newline in C++. Not a space – Tony The Lion Sep 16 '12 at 21:03