python int to sting code example Example 1: how to make an int into a string python int x = 10 string p = str(x) Example 2: to string python x = 2.718 strX = str(x)