반응형
250x250
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- AWS CI/CD 구축하기
- JavaScript
- IntelliJ
- Kafka
- SQL
- Spring
- kubeflow
- codepipeline
- Spring Error
- aws
- redis
- node
- Flux
- 도커
- Python
- aws cicd
- VPN
- PostgreSQL
- java bigdecimal
- codebuild
- or some instances in your deployment group are experiencing problems.
- chartjs
- chart.js
- codedeploy
- bootstrap
- Airflow
- Jenkins
- codedeploy error
- docker
- COALESCE
Archives
- Today
- Total
Small Asteroid Blog
[python error] not enough arguments for format string 본문
728x90
not enough arguments for format string
튜플에서 원소의 개수는 문자열에 있는 서식 시퀀스의 개수와 일치해야 한다.
또한, 원소의 유형도 서식 시퀀스와 일치해야 한다.
예시)
## 오류
'%d %d %d' % (1, 2)
## 정상
'%d %d %d' % (1, 2, 3)
728x90
반응형
'백엔드 > Python' 카테고리의 다른 글
[python] No module named 'cv2' (0) | 2020.10.29 |
---|---|
[python] dataframe db에 저장 (0) | 2020.10.07 |
[python error] execute() takes from 2 to 3 positional arguments but 6 were given (0) | 2020.09.28 |
(오류) (pymysql.err.OperationalError) (1054, "Unknown column '컬럼명' in 'field list'") (0) | 2020.09.28 |
[python] not all arguments converted during string formatting (0) | 2020.09.28 |