blob: 04b24cdfb691585f59ef769c028c154d31be234f (
plain)
1
2
3
4
5
6
7
8
9
|
"""
categories: Core,f-strings
description: f-strings cannot support expressions that require parsing to resolve unbalanced nested braces and brackets
cause: MicroPython is optimised for code space.
workaround: Always use balanced braces and brackets in expressions inside f-strings
"""
print(f"{'hello { world'}")
print(f"{'hello ] world'}")
|