str(integer_value)
x = 2.718 strX = str(x)
>>> str(10) '10' >>> int('10') 10
new_str = [str(x) for x in old_obj][0]