teratail header banner
teratail header banner
質問するログイン新規登録

回答編集履歴

1

修正

2020/01/28 04:26

投稿

technocore
technocore

スコア7398

answer CHANGED
@@ -1,5 +1,5 @@
1
1
  WindowsのPythonでPathを指定する場合は、Raw文字列を使うと間違いが少なくて便利です。
2
2
 
3
3
 
4
- print("インストール先は c:¥¥code¥¥python¥¥bin です")
4
+ print( "インストール先は c:¥¥code¥¥python¥¥bin です" )
5
- print(r"インストール先は c:¥code¥python¥bin です")
5
+ print( r"インストール先は c:¥code¥python¥bin です" )