반응형
1. 방법:
문자형을 정수형으로 바꿀 때, 실수형 문자열을 받으면 나는 에러
(x,y)=(1.0,3.0)
x, y = map(int, sys.stdin.readline().split())
>> invalid literal for int() with base 10: '1.0' 에러발생
2. 해결:
int 형을 float로 바꾼다.
x, y = map(float, sys.stdin.readline().split())
반응형
'Errors_Tips' 카테고리의 다른 글
[AWS Lambda] "One or more parameter values were invalid: Type mismatch for key ID expected: N actual: S" (0) | 2021.07.11 |
---|---|
[미완][Python Error] SettingWithCopyWarning 에러 원인과 해결 (0) | 2021.07.10 |
[python ] EOL while scanning string literal 해결방법 (0) | 2021.07.10 |
[Python Errors] 파이썬 에러나면 확인해볼 것. (0) | 2021.07.07 |
파이썬 heap 사용법: 파이썬 최소힙, 최대힙 (0) | 2021.07.06 |
댓글