「Python」エスケープシーケンスを使用するサンプル
サンプルコード
# coding: utf-8 #!/usr/bin/python3 cft = "C:\\arkgame\\com\\study.doc" print (cft)
結果
>python test.py
C:\arkgame\com\study.doc
Coding Changes the World
サンプルコード
# coding: utf-8 #!/usr/bin/python3 cft = "C:\\arkgame\\com\\study.doc" print (cft)
結果
>python test.py
C:\arkgame\com\study.doc