How can I use the range function to input raw_input and repeatedly output the input value 100 times.
python-2.7
raw_input = 5
for i in range(100):
print(raw_input)
raw_input=input" (enter a number!) ")
for i in range(100):
print(raw_input)
© 2024 OneMinuteCode. All rights reserved.