Ejemplo 1: nueva línea de Python
# n Makes A new Line.
print("Hello n World!")
#Out Put
#Hello
# World!
#Still Counts The Space!
Ejemplo 2: imprimir una nueva línea en python
print("n")
Ejemplo 3: nueva línea de Python
print("First Line n" "Second Line")
Ejemplo 4: cómo hacer que un texto de Python omita un salto de línea
The new line character is "n". It is used inside of a string.
Ejemplo 5: nueva línea en Python
print("line onenline two") # the n in python is used to create new lines in a string
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)