Hey just starting to learn python and got some problems already I made a code with an if statement It should work but it isn\'t working can someone fix it and tell me what I did
raw_input() returns a string but you are comparing x and y with integers.
raw_input()
x
y
Turn y into a integer before comparing:
y = int(y) if y >= 50 and y <= 100:
You can simplify your comparison a little with chaining, letting you inline the int() call:
int()
if 50 <= int(y) <= 100: