반응형
다음 코드가 있습니다.
test = "have it break."
selectiveEscape = "Print percent % in sentence and not %s" % test
print(selectiveEscape)
출력을 얻고 싶습니다.
Print percent % in sentence and not have it break.
실제로 일어나는 일 :
selectiveEscape = "Use percent % in sentence and not %s" % test
TypeError: %d format: a number is required, not str
해결 방법
>>> test = "have it break."
>>> selectiveEscape = "Print percent %% in sentence and not %s" % test
>>> print selectiveEscape
Print percent % in sentence and not have it break.
참조 페이지 https://stackoverflow.com/questions/10678229
반응형
'파이썬' 카테고리의 다른 글
파이썬 importlib.import_module을 사용하여 Python에서 모듈을 가져 오는 방법 (0) | 2021.02.15 |
---|---|
파이썬 bash : 예기치 않은 토큰`( '근처의 구문 오류-Python (0) | 2021.02.15 |
파이썬 목록 Python에서 부울 값 뒤집기 (0) | 2021.02.15 |
파이썬 Python 스크립트 내에서 명령 줄 실행 (0) | 2021.02.15 |
파이썬 벡터에서 반복되는 요소를 제거하는 방법 (Python의 'set'과 유사) (0) | 2021.02.15 |
댓글