You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
# 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)
|