Respuesta :

Answer:

if statements require == when comparing two values, and a colon (:) at the end. Also you gotta right && instead of and, then you gotta indent after like:

foo = 1

bar = 2

if foo == bar:

   foo += 1

Explanation: