# return True if the characters are identical at forward and reversed indices
def isPalindrome3(s):
for i in range(len(s)):
if s[i] != s[-1-i]:
return False
return True
if x < 2:
foo()
if x > 10:
bar()
if 2 <= x <= 10:
oh()
if x < 2:
foo()
elif x > 10:
bar()
else:
oh()