Imprimir un salto de línea en Python

Vaibhav Vaibhav 4 diciembre 2021
Imprimir un salto de línea en Python

En un lenguaje de programación, la siguiente línea está representada por un carácter de nueva línea o un carácter \n. Este carácter indica que cualquier texto que esté presente después de él se imprimirá en la siguiente línea. Las cadenas se rellenan con estos caracteres de nueva línea para representar las siguientes líneas.

En Python, podemos usar este carácter para imprimir texto en las siguientes líneas o crear saltos de línea.

Carácter de nueva línea o "\n" en Python

Consulte el siguiente código. Muestra cómo se puede utilizar el carácter de nueva línea para crear saltos de línea e imprimir texto en nuevas líneas.

print("Hello\nWorld")  # Notice the use of \n
print("My\nName\nIs\nPython")  # Notice the use of \n

a = [1, 2, 3, 4, 5]

for x in a:
    print(x, end="\n")  # \n is append to the end of the string

Producción :

Hello
World
My
Name
Is
Python
1
2
3
4
5
Vaibhav Vaibhav avatar Vaibhav Vaibhav avatar

Vaibhav is an artificial intelligence and cloud computing stan. He likes to build end-to-end full-stack web and mobile applications. Besides computer science and technology, he loves playing cricket and badminton, going on bike rides, and doodling.