Objectivo
Desarrolla un programa Python que solicite al usuario un número y una cantidad, y que muestre ese número repetido tantas veces como el usuario haya especificado. A continuación, se incluye un ejemplo:
Ingrese un número: 4
Ingrese una cantidad: 5
44444
Debe mostrarlo tres veces: primero utilizando "while" y luego utilizando "for".
Ejemplo de ejercicio de Python
Mostrar código Python
# Prompt the user to enter a number
num = input("Enter a number: ")
# Prompt the user to enter a quantity
quantity = int(input("Enter a quantity: "))
# Display the number repeated as many times as specified using a while loop
i = 0
while i < quantity:
print(num, end="")
i += 1
print() # Move to the next line
# Display the number repeated as many times as specified using a for loop
for _ in range(quantity):
print(num, end="")
print() # Move to the next line
# Display the number repeated as many times as specified using string multiplication
print(num * quantity)
Output
Enter a number: 4
Enter a quantity: 5
44444
44444
44444
Código de ejemplo copiado
Comparte este ejercicio de Python