Answers for "python format int to be three digits"

0

convert 1 digit to 2 digit python

number = 10
print(number) #Output: 10
zero_filled_number = str(number).zfill(3)
print(zero_filled_number) #Output: "010"
Posted by: Guest on November-17-2020
0

format number of digits python

# credit to Stack Overflow user in source link
# x is a floating point number
# a is the total width of the field being printed, lefted-padded by spaces.
# b is the number of digits after the decimal point

print("{:a.bf}".format(x))
Posted by: Guest on June-03-2021

Python Answers by Framework

Browse Popular Code Answers by Language