b5c7f8f8e14a7ae2ac0bf31b49fa493104105db5
python/pylance/Unterminated expression in f-string; missing close bracePylance.md
... | ... | @@ -0,0 +1,9 @@ |
1 | +[How to fix Unterminated expression in f-string; missing close brace in python? - Stack Overflow](https://stackoverflow.com/questions/68461626/how-to-fix-unterminated-expression-in-f-string-missing-close-brace-in-python) |
|
2 | + |
|
3 | +``` |
|
4 | +s = f'hoge {body['key']}' |
|
5 | +``` |
|
6 | +ではなく、 |
|
7 | +``` |
|
8 | +s = f'hoge {body["key"]}' |
|
9 | +``` |
|
... | ... | \ No newline at end of file |