I would like to make my program convert strs into ints in that once that str is spotted at any instance python recognises it as an int number.
str('C') = 1
str('5') = 5
thanks
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The Python built-in
int()function converts strings to integers:However,
'C'is not a (decimal) integer and will throw an error fromint():