mirror of
https://github.com/astral-sh/ruff.git
synced 2025-10-02 22:55:08 +00:00
11 lines
112 B
Python
11 lines
112 B
Python
a = "abc"
|
|
b = f"ghi{'jkl'}"
|
|
|
|
c = f"def"
|
|
d = f"def" + "ghi"
|
|
e = (
|
|
f"def" +
|
|
"ghi"
|
|
)
|
|
|
|
g = f"ghi{123:{45}}"
|