int à chaîner python
# Use the function str() to turn an integer into a string
integer = 123
string = str(integer)
string
# Output:
# '123'
SkelliBoi
# Use the function str() to turn an integer into a string
integer = 123
string = str(integer)
string
# Output:
# '123'
new_str = [str(x) for x in old_obj][0]