You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
405 B
18 lines
405 B
"""
|
|
categories: Syntax,Spaces
|
|
description: uPy requires spaces between literal numbers and keywords, CPy doesn't
|
|
cause: Unknown
|
|
workaround: Unknown
|
|
"""
|
|
try:
|
|
print(eval('1and 0'))
|
|
except SyntaxError:
|
|
print('Should have worked')
|
|
try:
|
|
print(eval('1or 0'))
|
|
except SyntaxError:
|
|
print('Should have worked')
|
|
try:
|
|
print(eval('1if 1else 0'))
|
|
except SyntaxError:
|
|
print('Should have worked')
|
|
|