“Python Print Raw String” Respostas de código

Python Print Raw String

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

Strings cru Python

'''
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

Respostas semelhantes a “Python Print Raw String”

Perguntas semelhantes a “Python Print Raw String”

Mais respostas relacionadas para “Python Print Raw String” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código