merge with 3.2

This commit is contained in:
Sandro Tosi 2011-12-24 15:53:51 +01:00
commit 35927dea45
1 changed files with 1 additions and 1 deletions

View File

@ -583,7 +583,7 @@ Expressing a percentage::
>>> points = 19
>>> total = 22
>>> 'Correct answers: {:.2%}.'.format(points/total)
>>> 'Correct answers: {:.2%}'.format(points/total)
'Correct answers: 86.36%'
Using type-specific formatting::