Contamos con el resultado a este conflicto, o por lo menos eso creemos. Si sigues con dudas puedes dejar un comentario y sin tardanza
Ejemplo 1: cómo imprimir cosas en varias líneas en python
test ="""
test text 1!
test text 2!
test text 3!
"""print(test)
Ejemplo 2: imprimir múltiples líneas python
#You can use n to create a carriage return.print("first linenSecond line")#Or use the following syntax to replace the commas with n#to create carriage returns for each line.print("first line","second line", sep="n")#Or use triple quotation marks at the start and end of #the text and format the text how you want it to appear.print("""
Line1
Line2
""")
Ejemplo 3: cómo imprimir una palabra en una línea diferente en python
print("first line","second line", sep="n")print("first linenSecond line")
Ejemplo 4: cómo imprimir varias cadenas en una línea en python
number1 =6
number2 =10print(number1," + ", number2
Aquí tienes las reseñas y calificaciones
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)