# rawを使う
>>> print('namakemono\nmakemono')
namakemono
makemono
# Python2
>>> print(r'namakemono\nmakemono')
namakemono\nmakemono
>>>
# Python3以降でも同様に接頭辞にrを使う
>>> a = r"\name\desktop"
>>> print(a)
\name\desktop
>>>
Register as a new user and use Qiita more conveniently
- You get articles that match your needs
- You can efficiently read back useful information
- You can use dark theme