I occasionally use Python string formatting. This can be done like so:
print('int: %i. Float: %f. String: %s' % (54, 34.434, 'some text'))
But, this can also be done like this:
print('int: %r. Float: %r. String: %r' % (54, 34.434, 'some text'))
As well as using %s:
print('int: %s. Float: %s. String: %s' % (54, 34.434, 'some text'))
My question is therefore: why would I ever use anything else than the %r or %s? The other options (%i, %f and %s) simply seem useless to me, so I'm just wondering why anybody would every use them?
[edit] Added the example with %s
For floats, the value of repr
and str
can vary:
>>> num = .2 + .1
>>> 'Float: %f. Repr: %r Str: %s' % (num, num, num)
'Float: 0.300000. Repr: 0.30000000000000004 Str: 0.3'
Using %r
for strings will result in quotes around it:
>>> 'Repr:%r Str:%s' % ('foo','foo')
"Repr:'foo' Str:foo"
You should always use %f
for floats and %d
for integers.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With