conversion of string python code example
Example 1: how to make an int into a string python
int x = 10
string p = str(x)
Example 2: python data type conversion
equationStrToInt = '8 * 8'
eval(equationStrToInt)
type(equationStrToInt)
print(equationStrToInt)
strToList = 'GREPPER'
list(strToList)
type(strToList)
print(strToList)