black/tests/data/string_prefixes.py
2018-06-06 15:48:38 -07:00

15 lines
150 B
Python

#!/usr/bin/env python3.6
name = R"Łukasz"
F"hello {name}"
B"hello"
# output
#!/usr/bin/env python3.6
name = r"Łukasz"
f"hello {name}"
b"hello"