Skip to content

Latest commit

 

History

History

ep042

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

Today I show all the many many ways to format strings in python as well as my recommendations on "one way to do it"!

Interactive examples

Python

'foo' + 123
format(21.567, '.2f')
format(21.567, '.1f')

bar = (1,)
'foo %r' % bar
'foo %r' % (bar,)

Bash

python t.py