7 lines
247 B
Python
7 lines
247 B
Python
x = 3000000
|
|
y = 30000000
|
|
print("\nOriginal Number: ", x)
|
|
print("Formatted Number with comma separator: "+"{:,}".format(x));
|
|
print("Original Number: ", y)
|
|
print("Formatted Number with comma separator: "+"{:,}".format(y));
|
|
print() |