b299027c91285bb8e7d6fc82d236b4dc7df0cf37
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 |