i am looking for help. We need to write a program that prints all numbers in the range of (n -20,n + 20). In addition, the program asks you beforehand to input a number. If that number is not even or multiple of 10, you need to take a guess again. Only if the number is even and multiple by 10 the program prints the range aforementioned. I struggle with that.
I came up with that solution:
JavaScript
x
8
1
i = int(input("please enter a number: "))
2
while (i % 10 == 0) and ((i % 2) == 0):
3
x = 20
4
while (x >= 0):
5
print(i - x)
6
x = x - 1
7
break
8
but it will only print the range n-20 and not +20 and it also won’t ask you again if you input a false number.
I know there is also the possibility to use for I in range() but I am at a loss for ideas at the moment.
Thank you!
Advertisement
Answer
You can simply do:
JavaScript
1
7
1
while True:
2
i = int(input("please enter a number: "))
3
if i % 10 == 0:
4
for x in range(i-20,i+21):
5
print(x)
6
break
7
It will keep on asking until it satisfies the condition.