if...elif...else
if 3 > 2:$ python3 python_intro.py
File "python_intro.py", line 2
^
SyntaxError: unexpected EOF while parsingif 3 > 2:
print('Isso funciona!')$ python3 python_intro.py
Isso funciona!Last updated
Was this helpful?
if 3 > 2:$ python3 python_intro.py
File "python_intro.py", line 2
^
SyntaxError: unexpected EOF while parsingif 3 > 2:
print('Isso funciona!')$ python3 python_intro.py
Isso funciona!Last updated
Was this helpful?
Was this helpful?