Converting a string to an int

If we want to convert a number that is represented in the string to int, we have to use the int() function. This function is used to convert a number in given base to decimal.

Syntax: int(string, base)

Parameter :

string : consists of 1’s and 0’s

base : (integer value) base of the number.

Example:

Python3




# string data
n = '321'
print('Type of num is :', type(n))
  
# convert using int()
n = int(n)
print('So Now, type of num is :', type(n))


Output:

Type of num is : <class 'str'>
So Now, type of num is : <class 'int'>

String to Int and Int to String in Python

Python defines type conversion functions to directly convert one data type to another. This article is aimed at providing the information about converting a string to int and int to string.

Similar Reads

Converting a string to an int

If we want to convert a number that is represented in the string to int, we have to use the int() function. This function is used to convert a number in given base to decimal....

Converting an Int to string

...