This isn't working and I don't know why. Help needed!
I have defined a string:
userin = "h"
I ask the user for an input:
userin = raw_input()
I have a while loop that runs if the string is not equal to a certain letter and an if (within the while) that checks if the string is equal to a certain letter:
while (userin!="c" or low == high):
userin = raw_input()
if userin is "c"
break
Indent your code correctly