# We start out with an integer. wealth = 1000000000 # We convert it to a string formatted the way we want. formatted = format(wealth, ',d') # Print it out! print(formatted)