python轉義字符串問題
s = 'Python was started in 1989 by \"Guido\".\n
Python is free and easy to learn.'
print s
想不通為啥就是不對,無法通過(python的定義字符串)
s = 'Python was started in 1989 by \"Guido\".\n
Python is free and easy to learn.'
print s
想不通為啥就是不對,無法通過(python的定義字符串)
2017-05-31
舉報
2017-05-31
s = 'Python was started in 1989 by \"Guido\".\nPython is free and easy to learn.'
print s
2018-01-11
python對空格檢查很嚴格,兩個字符串之間不能直接回車
2017-05-31
額,大哥們,我是想問原因,不是要你們重打一遍,
2017-05-31
s = 'Python was started in 1989 by "Guido".\n Python is free and easy to learn.'
print s
2017-05-31