Errors_Tips17 [파이썬 에러] invalid literal for int() with base 10: '1.0' 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()) 2021. 7. 3. 이전 1 2 3 4 5 다음 반응형