Hacker News
new
|
past
|
comments
|
ask
|
show
|
jobs
|
submit
login
bikingbismuth
on April 30, 2022
|
parent
|
context
|
favorite
| on:
We fixed f-string typos in popular Python repos
If you want braces in your f strings you double them up.
Ex:
n = "hn"
print(f"hello {n} your path is {{path}}")
Out: hello hn your path is {path}
Guidelines
|
FAQ
|
Lists
|
API
|
Security
|
Legal
|
Apply to YC
|
Contact
Search:
Ex:
n = "hn"
print(f"hello {n} your path is {{path}}")
Out: hello hn your path is {path}