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.
Login
Login
OnlineGDB Q&A
Questions
Unanswered
Tags
Ask a Question
Ask a Question
Como hago para imprimir n datos de un for dentro de otro?
0
votes
asked
Jan 18, 2020
by
anonymous
for i in range(3):
num1=int(input("ingrese numeros: ")
Ahí ingreso 3 numeros , como seria el código de otro for para imprimir esos datos?
phyton
needhelp
-for
Your answer
Your name to display (optional):
Email me at this address if my answer is selected or commented on:
Email me if my answer is selected or commented on
Privacy: Your email address will only be used for sending these notifications.
Anti-spam verification:
To avoid this verification in future, please
log in
or register.
1 Answer
0
votes
answered
Sep 23
by
Nyther
(
140
points)
nums = []
for i in range(3):
num1=int(input("ingrese numeros: ")
nums.append(num1)
print(nums)
Your comment on this answer:
Your name to display (optional):
Email me at this address if a comment is added after mine:
Email me if a comment is added after mine
Privacy: Your email address will only be used for sending these notifications.
Anti-spam verification:
To avoid this verification in future, please
log in
or register.
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.
...