“Python Raw Strings” Kod odpowiedzi

Python Drukuj surowy sznur

>>> print(repr('abc 123 \n'))
'abc 123 \n'
Enoch

Python Raw Strings

'''
Windows paths for files contain backslashes which python interprets as
escape sequences. To ignore these escape sequences, you can use raw strings!
'''

import os

# os.chdir changes the current working directory
os.chdir("C:\Users\USERNAME\Desktop") # Creates error

INSTEAD, USE:
os.chdir(r"C:\Users\USERNAME\Desktop") # Add an r before the string
Ninja Penguin

Odpowiedzi podobne do “Python Raw Strings”

Pytania podobne do “Python Raw Strings”

Więcej pokrewnych odpowiedzi na “Python Raw Strings” w Python

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu