How to Convert Strings into Integers in Python

All data types in Python, including integers and strings, are objects. Often when writing Python code, you will need to convert one data type to another. For example, to perform a math operation on a number represented as a string, it needs to be converted into an integer. In this tutorial, we’ll show you how to convert a Python string to an integer.

Source: LXer – How to Convert Strings into Integers in Python