File: string_prefixes.py

package info (click to toggle)
black 18.9b0-1-6
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 5,160 kB
  • sloc: python: 91,870; makefile: 32; sh: 2
file content (14 lines) | stat: -rw-r--r-- 150 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/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"