Files
Document-Management-System-…/vendor/scrivo/highlight.php/test/markup/python/f-strings.txt

14 lines
147 B
Plaintext
Raw Normal View History

2021-04-07 19:25:18 -04:00
f'{name}'
f"{name + 5}"
>>> f"""
... {
... name
... }
... """
rf"{name}"
fr"{name}"
f"{name + f'{name}'}"
f"{{ }}"
if"text"=="text":
"good"