Knowee
Questions
Features
Study Tools

Traceback (most recent call last): File "/piston/jobs/17ed55fb-e658-48c5-a545-f2b7d7c51a47/test.py", line 3, in <module> c=int(input())ValueError: invalid literal for int() with base 10: 'Day1'

Question

Traceback (most recent call last): File "/piston/jobs/17ed55fb-e658-48c5-a545-f2b7d7c51a47/test.py", line 3, in <module> c=int(input())ValueError: invalid literal for int() with base 10: 'Day1'

🧐 Not the exact question you are looking for?Go ask a question

Solution

The error message you're seeing is a Python traceback. It's telling you that there's an issue with the line of code c=int(input()).

The problem is that the input you're trying to convert to an integer (int()) is 'Day1', which is not a valid integer. Python can't convert a string that contains non-numeric characters to an integer, hence it raises a ValueError.

To fix this issue, you need to ensure that the input you're trying to convert to an integer is a valid number. If you're expecting the user to input a string, you should not convert it to an integer. If you're expecting a number, you need to instruct the user to only input numbers.

This problem has been solved

Similar Questions

Traceback (most recent call last): File "/piston/jobs/73cd8974-25a8-40b2-93f5-40ecd87f6049/test.py", line 21, in <module> a.append(int(input()))ValueError: invalid literal for int() with base 10: '1 2 3 4 5 6'

Traceback (most recent call last): File "/piston/jobs/0c775e93-e6c7-44bd-ba6a-c7d9249119de/test.py", line 9, in <module> calories[day]=int(input())ValueError: invalid literal for int() with base 10: 'Day1'

Traceback (most recent call last): File "/piston/jobs/aea0f700-51c4-48f4-b83d-0a1c37ad2b8b/test.py", line 8, in <module> n,m=map(int,input().split())ValueError: invalid literal for int() with base 10: '{{}}'1

24 23Traceback (most recent call last): File "/piston/jobs/09281298-42ab-4850-b2da-e6fc4d5a0ea3/test.py", line 9, in <module> hrs=D//pTypeError: unsupported operand type(s) for //: 'int' and 'function'36 32Traceback (most recent call last): File "/piston/jobs/5da139ac-bf93-4331-8eb2-a96e6fe8883a/test.py", line 9, in <module> hrs=D//pTypeError: unsupported operand type(s) for //: 'int' and 'function'

Traceback (most recent call last): File "/piston/jobs/b4a38496-5fb5-4161-b994-1c959d5e0c10/test.py", line 3, in <module> a,b=map(int,input().split())ValueError: not enough values to unpack (expected 2, got 1)

1/3

Upgrade your grade with Knowee

Get personalized homework help. Review tough concepts in more detail, or go deeper into your topic by exploring other relevant questions.