Glossary

F-string

Python's formatted string literal syntax (introduced in 3.6). Allows embedding expressions inside string literals using `{expression}` syntax: `f"Hello, {name}!"`. (Ch. 5)

Learn More

Related Terms