Griddo
0
Q:

how to make string to int in python

# this is a string
a = "12345"
# use int() to convert to integer
b = int(a)

# if string cannot be converted to integer,
a = "This cannot be converted to an integer"
b = int(a)  # the interpreter raises ValueError
3
# Use the function int() to turn a string into an integer
string = '123'
integer = int(string)
integer
# Output:
# 123
23
string = "324501763"
integer = int(string)
7
print(int("12"))
4
my_string = "50485"
print(int(my_string))
0
str1="100"
int(str1)
1
a_string = "1234"
a_int = int(a_string)
0

New to Communities?

Join the community