Print number in new line python

Print number in new line python

Welcome! The new line character in Python is used to mark the end of a line and the beginning of a new line. Knowing how to use it is essential if you want to print output to the console and work with files.

In this article, you will learn:

  • How to identify the new line character in Python.
  • How the new line character can be used in strings and print statements.
  • How you can write print statements that don't add a new line character to the end of the string.

Let's begin! ✨

🔹 The New Line Character

The new line character in Python is:

Print number in new line python

It is made of two characters:

  • A backslash.
  • The letter n.

If you see this character in a string, that means that the current line ends at that point and a new line starts right after it:

Print number in new line python

You can also use this character in f-strings:

>>> print(f"Hello\nWorld!")

🔸 The New Line Character in Print Statements

By default, print statements add a new line character "behind the scenes" at the end of the string.

Like this:

Print number in new line python

This occurs because, according to the Python Documentation:

The default value of the end parameter of the built-in print function is \n, so a new line character is appended to the string.

💡 Tip: Append means "add to the end".

This is the function definition:

Print number in new line python

Notice that the value of end is \n, so this will be added to the end of the string.

If you only use one print statement, you won't notice this because only one line will be printed:

Print number in new line python

But if you use several print statements one after the other in a Python script:

Print number in new line python

The output will be printed in separate lines because \n has been added "behind the scenes" to the end of each line:

Print number in new line python

We can change this default behavior by customizing the value of the end parameter of the print function.

If we use the default value in this example:

Print number in new line python

We see the output printed in two lines:

Print number in new line python

But if we customize the value of end and set it to " "

Print number in new line python

A space will be added to the end of the string instead of the new line character \n, so the output of the two print statements will be displayed in the same line:

Print number in new line python

You can use this to print a sequence of values in one line, like in this example:

Print number in new line python

The output is:

Print number in new line python

💡 Tip: We add a conditional statement to make sure that the comma will not be added to the last number of the sequence.

Similarly, we can use this to print the values of an iterable in the same line:

Print number in new line python

The output is:

Print number in new line python

🔸 The New Line Character in Files

The new line character \n is also found in files, but it is "hidden". When you see a new line in a text file, a new line character \n has been inserted.

Print number in new line python

You can check this by reading the file with .readlines(), like this:

with open("names.txt", "r") as f:
    print(f.readlines())

The output is:

Print number in new line python

As you can see, the first three lines of the text file end with a new line \n character that works "behind the scenes."

💡 Tip: Notice that only the last line of the file doesn't end with a new line character.

🔹 In Summary

  • The new line character in Python is \n. It is used to indicate the end of a line of text.
  • You can print strings without adding a new line with end = , which is the character that will be used to separate the lines.

I really hope that you liked my article and found it helpful. Now you can work with the new line character in Python.

Check out my online courses. Follow me on Twitter. ⭐️



Learn to code for free. freeCodeCamp's open source curriculum has helped more than 40,000 people get jobs as developers. Get started

How do you print a new line number?

Using \x0A. 0A in hexadecimal (10 in Decimal) is the ASCII value of new line character, we can use \x0A anywhere in the printf() statement to print text in new line.

How do I print a number between strings in Python?

Use comma “,” to separate strings and variables while printing int and string in the same line in Python or convert the int to string. When adding strings, they concatenate.

What does '\ t mean in Python?

In Python strings, the backslash "\" is a special character, also called the "escape" character. It is used in representing certain whitespace characters: "\t" is a tab, "\n" is a newline, and "\r" is a carriage return.

What is print new value in new line?

'\n' is used to print the new value in the next line.