raw f-format
- f
- r
name="foo"
print(r"a\nb {name}")
print(rf"a\nb {name}")
print(fr"a\nb {name}") # this is better (for vim)
a\nb {name}
a\nb foo
a\nb foo
Press ← or → to navigate between chapters
Press S or / to search in the book
Press ? to show this help
Press Esc to hide this help
name="foo"
print(r"a\nb {name}")
print(rf"a\nb {name}")
print(fr"a\nb {name}") # this is better (for vim)
a\nb {name}
a\nb foo
a\nb foo