Python Forum
confused about string formatting
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
confused about string formatting
#2
a = f"{14.2000003:0.2f}"
b = "{:0.2f}".format(14.2000003)
c = "%0.2f" % 14.2000003
print(a, b, c)
Which do you like best? They all work fine.
Output:
14.20 14.20 14.20
I would go with the top since this is the most recent way to format. It must improve over shortcomings in the previous methods. I like how you embed the value in the same string as the formatting controls. b uses pre-3.6 Python formatting. I don't like how the values are at the end. It is easy to make a mistake on format strings with lots of values. The % formatting is ancient.
Reply


Messages In This Thread
confused about string formatting - by barryjo - Mar-05-2022, 09:45 PM
RE: confused about string formatting - by deanhystad - Mar-05-2022, 10:11 PM
RE: confused about string formatting - by barryjo - Mar-05-2022, 10:12 PM
RE: confused about string formatting - by snippsat - Mar-05-2022, 10:23 PM
RE: confused about string formatting - by barryjo - Mar-05-2022, 10:33 PM
RE: confused about string formatting - by barryjo - Mar-05-2022, 10:48 PM
RE: confused about string formatting - by snippsat - Mar-06-2022, 02:03 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  String int confused janeik 7 1,193 Aug-02-2023, 01:26 AM
Last Post: deanhystad
  Formatting a date time string read from a csv file DosAtPython 5 1,512 Jun-19-2023, 02:12 PM
Last Post: DosAtPython
  I am confused with the key and value thing james1019 3 1,026 Feb-22-2023, 10:43 PM
Last Post: deanhystad
  String formatting (strptime) issues Henrio 2 929 Jan-06-2023, 06:57 PM
Last Post: deanhystad
  string formatting barryjo 7 2,173 Jan-02-2022, 02:08 AM
Last Post: snippsat
  Help with string formatting in classes brthurr 6 11,115 Dec-17-2021, 04:35 PM
Last Post: Jeff900
  Pandas confused DPaul 6 2,678 Sep-19-2021, 06:45 AM
Last Post: DPaul
  is and '==' i'm confused hshivaraj 6 2,804 Sep-15-2021, 09:45 AM
Last Post: snippsat
  Confused with 'flags' tester_V 10 5,085 Apr-12-2021, 03:03 AM
Last Post: tester_V
  Question on HTML formatting with set string in message Cknutson575 3 3,581 Mar-09-2021, 08:11 AM
Last Post: Cknutson575

Forum Jump:

User Panel Messages

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