Use `str()`:
`s = str(123)`
Use an f-string:
`s = f”{123}”`
Use `format()`:
`s = “{}”.format(123)`
Use `%` formatting:
`s = “%s” % 123`
Use `repr()` if you want the string representation:
`s = repr(123)`
Use `str()`:
`s = str(123)`
Use an f-string:
`s = f”{123}”`
Use `format()`:
`s = “{}”.format(123)`
Use `%` formatting:
`s = “%s” % 123`
Use `repr()` if you want the string representation:
`s = repr(123)`