0
我知道我們可以在字符串之前使用r(原始字符串)和u(unicode)標誌來獲得我們實際需要的內容。但是,我想知道這些如何處理字符串。我在空閒試過這樣:u和r前綴如何在python中使用字符串?
a = r"This is raw string and \n will come as is"
print a
# "This is raw string and \n will come as is"
help(r)
# ..... Will get NameError
help(r"")
# Prints empty
的Python如何知道它應該把r
或u
的字符串作爲標誌的前面?或者作爲字符串文字具體?如果我想更多地瞭解什麼是字符串文字和它們的限制,我怎樣才能學習它們?