Python Tip : escape character /이스케이프 문자

By @attette3/17/2018escape-character

따옴표 안에 문자를 넣어서 출력하고 싶은 경우, 예를 들어서 "Python is fun" 같은 경우는 이스케이프 문자를 사용하면 됩니다.

print(""" Python is fun""") 대신에 print(""Python is fun "")

스크린샷 2018-03-18 오전 8.06.32.png

2

comments