Beginner question, what happens if a string is used as one of the conditions for an 'and' operator in Python code?
def bar(a,b):
  if b%a >= b-a:
    print(a, "first")
  elif b*3 > a**2 and "False":
    print(a, "second")
  else:
    print(a, "third")
  a,b = b%a,a
  if a>1:
    bar(a,b)
bar(7,19)
I'm referring to the second elif condition here. Appreciate the help!
 
     
     
    