반응형
string을 int로 바꿀 때 난 에러,
int로 바꾸려는 대상을 print해서 확인해보고 어떤 형태인 지 확인한다.
string이라면 split()을 한 후 int로 지정하면 해결된다.
예
에러코드
map(int, sys.stdin.readline())
수정코드
map(int, sys.stdin.readline().split())
반응형
'Errors_Tips' 카테고리의 다른 글
[JS Error] ReferenceError: require is not defined (0) | 2021.07.23 |
---|---|
[Webpack Error] Cannot find module 'webpack-cli/bin/config-yargs' (0) | 2021.07.18 |
[Node Error] (node:9540) ExperimentalWarning: The ESM module loader is experimental. (0) | 2021.07.18 |
[python error] ValueError: min() arg is an empty sequence (0) | 2021.07.16 |
JavaScript 자바스크립트 형변환 - Int, String 바꾸기 (0) | 2021.07.14 |
댓글