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.
7 lines
342 B
7 lines
342 B
"""
|
|
categories: Syntax,Operators
|
|
description: MicroPython allows using := to assign to the variable of a comprehension, CPython raises a SyntaxError.
|
|
cause: MicroPython is optimised for code size and doesn't check this case.
|
|
workaround: Do not rely on this behaviour if writing CPython compatible code.
|
|
"""
|
|
print([i := -1 for i in range(4)])
|
|
|