Differences between revisions 2 and 4 (spanning 2 versions)
Revision 2 as of 2019-01-29 04:28:16
Size: 160
Editor: PieterSmit
Comment: spelling
Revision 4 as of 2019-01-29 04:41:24
Size: 424
Editor: PieterSmit
Comment:
Deletions are marked like this. Additions are marked like this.
Line 4: Line 4:
   * an f-string is created by prefixing the string with a f e.g. {{{
f"this is a f-string"
     }}}

== Examples of f-strings ==
 * numbers {{{
 a= 10.1234
 >>> f'{a:.2f}'
 '10.12'


>>> f'{a*1000:,.2f}'
'10,123.40'
    }}}
 * date {{{
date
}}}

Python Fstring formatting

  • f - string is the latest python string formatting addition, added in 3.5
    • an f-string is created by prefixing the string with a f e.g.

      f"this is a f-string"

Examples of f-strings

  • numbers

     a= 10.1234
     >>> f'{a:.2f}'
     '10.12'
    
    
    >>> f'{a*1000:,.2f}'
    '10,123.40'
  • date

    date

Python/FStringsAndFormatting (last edited 2022-11-20 07:49:57 by PieterSmit)