Integers are whole numbers. In other words, they have no fractional component. Two data types you can use to store an integer in Python are int and str .
There are several ways to convert an integer to string in python. You can use [ str(integer here) ] ...
To convert an integer to a string, use the str() built-in function. The function takes an int as input and produces a string as its output.
String to Integer (atoi) - Implement the myAtoi(string s) function, which converts a string to a 32-bit signed integer (similar to C/C++'s atoi function).