Hello, OnlineGDB Q&A section lets you put your programming query to fellow community users. Asking a solution for whole assignment is strictly not allowed. You may ask for help where you are stuck. Try to add as much information as possible so that fellow users can know about your problem statement easily.

¿como hago para imprimir lo ingresado en un ciclo for en phyton 3?

0 votes
asked Nov 16, 2019 by Ivan Perez (130 points)
retagged Nov 17, 2019 by Ivan Perez
for i in range(3):
    nombre=str(input("Ingrese nombre "))

quiero imprimir lo ingresado por teclado

1 Answer

+1 vote
answered Nov 18, 2019 by JuanR (160 points)
for i in range(3):
    nombre=str(input("Ingrese nombre "))
    print(nombre)
Welcome to OnlineGDB Q&A, where you can ask questions related to programming and OnlineGDB IDE and and receive answers from other members of the community.
...