First to say I am new to 'asking questions' in stackoverflow so I apologize if my question is not in the right category or another similar question has been asked already. I tried to find a relevant question but I couldn't. Mine is a little specific which will serve me as an example for future programming.
The flow of the simple program I am trying to create is:
Having a start number of for example 0
- the number gets incremented by 1 until the number has incremented with 100 numbers at which point..
- Program asks "Y/N" if Yes then steps 1 and 2 repeat (Every time this process repeats the number should add another 100 on it self. So for example the second repetition will start from 100 and not from 0) if no the step 3
- The program prints the largest number that was reached
This is my code:
def creeper (number, growth):
while number <= growth:
print (number)
number += 1
return (number)
diff = 100 #represents the limit of each incrementation
print('lets start')
old_num = creeper(0, diff)
while True:
inp = str(input('Yy/Nn: '))
print(inp)
if inp == 'Y' or 'y':
new_num = creeper(old_num, diff)
old_num = new_num
else:
print(new_num)
break
input("Did we get to here? Press enter to exit then: ")
In particular I am asking about this section:
if inp == 'Y' or 'y':
new_num = creeper(old_num, diff)
old_num = new_num
else:
print(new_num)
break
It seems that python reads correctly what is the input but it doesn't go back to step 1. Actually it doesn't even get to step 3. I can't understand how this particular chunk of code works:
if inp == 'Y' or 'y':
I appreciate any response to my question. Thanks!