「Python」raw文字列のサンプル

書式
r"ファイルパス"

使用例

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
# coding: utf-8
cftB = r"c:\study\sample.txt"
print("raw文字列を使用する")
print (cftB)
# coding: utf-8 cftB = r"c:\study\sample.txt" print("raw文字列を使用する") print (cftB)
# coding: utf-8

cftB = r"c:\study\sample.txt"
print("raw文字列を使用する")
print (cftB)

結果

raw文字列を使用する
c:\study\sample.txt

Python

Posted by arkgame