presentations/highlight-js/test/markup/python/f-strings.txt

11 lines
109 B
Text
Raw Permalink Normal View History

2018-12-07 08:48:05 -06:00
f'{name}'
f"{name + 5}"
>>> f"""
... {
... name
... }
... """
rf"{name}"
fr"{name}"
f"{name + f'{name}'}"