「Python」raw文字列のサンプル
書式
r"ファイルパス"
使用例
# coding: utf-8 cftB = r"c:\study\sample.txt" print("raw文字列を使用する") print (cftB)
結果
raw文字列を使用する c:\study\sample.txt
Coding Changes the World
書式
r"ファイルパス"
使用例
# coding: utf-8 cftB = r"c:\study\sample.txt" print("raw文字列を使用する") print (cftB)
結果
raw文字列を使用する c:\study\sample.txt