Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Rounding/Truncating Numbers
#1
How do I format a variable to a standard money format? This is what I am currently doing:

total = 214.5467
print('Your total is: $' + str(total)[0:4])
Problem is, it only puts out 3 digits, meaning most of the number will be ignored. What commands do I need to use to fix this?
Reply
#2
use:
print('Your total is: $ {:4.6f}'.format(total))
the .6 tells format to use 6 decimal places to right the 4, 4 on left 'f' = float
Reply
#3
Use f-string.
>>> total = 214.5467
>>> print(f'Your total is: $ {total:.2f}')
Your total is: $ 214.55

>>> for word in 'f-strings are awesome'.split():
...     print(f'{word.capitalize():~^20}')
...     
~~~~~F-strings~~~~~~
~~~~~~~~Are~~~~~~~~~
~~~~~~Awesome~~~~~~~
Reply
#4
(Jan-16-2019, 10:24 PM)Larz60+ Wrote: use:
print('Your total is: $ {:4.6f}'.format(total))
the .6 tells format to use 6 decimal places to right the 4, 4 on left 'f' = float

(Jan-16-2019, 10:39 PM)snippsat Wrote: Use f-string.
>>> total = 214.5467
>>> print(f'Your total is: $ {total:.2f}')
Your total is: $ 214.55

>>> for word in 'f-strings are awesome'.split():
...     print(f'{word.capitalize():~^20}')
...     
~~~~~F-strings~~~~~~
~~~~~~~~Are~~~~~~~~~
~~~~~~Awesome~~~~~~~

Wow! Thanks for the advice guys. I had never heard of an f-string before. I finally got a script I've been working on finished with your advice. Big Grin

Output:
~~~~~~~~You~~~~~~~~~ ~~~~~~~~Guys~~~~~~~~ ~~~~~~~~Are~~~~~~~~~ ~~~~~~Awesome!~~~~~~
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  need help rounding joseph202020 7 1,317 Feb-21-2023, 08:13 PM
Last Post: joseph202020
  from numpy array to csv - rounding SchroedingersLion 6 2,163 Nov-14-2022, 09:09 PM
Last Post: deanhystad
  Random data generation sum to 1 by rounding juniorcoder 9 3,413 Oct-20-2021, 03:36 PM
Last Post: deanhystad
  Rounding issue kmll 1 1,410 Oct-08-2021, 10:35 AM
Last Post: Yoriz
  Not rounding to desired decimal places? pprod 2 2,546 Mar-05-2021, 11:11 AM
Last Post: pprod
  Decimal Rounding error project_science 4 2,752 Jan-06-2021, 03:14 PM
Last Post: project_science
  rounding and floats Than999 2 3,085 Oct-26-2020, 09:36 PM
Last Post: deanhystad
  Rounding to the nearest eight wallgraffiti 2 2,072 Jul-15-2020, 06:05 PM
Last Post: wallgraffiti
  rounding question DPaul 16 5,533 Apr-12-2020, 02:30 PM
Last Post: DPaul
  price + tax rounding mlieqo 11 6,420 Sep-21-2019, 04:53 PM
Last Post: mlieqo

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020