Mercurial > pylearn
annotate common/str.py @ 363:9e84e8a20a75
Added to misc.file
author | Joseph Turian <turian@gmail.com> |
---|---|
date | Thu, 03 Jul 2008 17:52:11 -0400 |
parents | 9e73e6dc9823 |
children |
rev | line source |
---|---|
357
2291a244a887
Added common.string
Joseph Turian <turian@iro.umontreal.ca>
parents:
355
diff
changeset
|
1 def percent(a, b): |
355 | 2 """ |
357
2291a244a887
Added common.string
Joseph Turian <turian@iro.umontreal.ca>
parents:
355
diff
changeset
|
3 Return percentage string of a and b, e.g.: |
2291a244a887
Added common.string
Joseph Turian <turian@iro.umontreal.ca>
parents:
355
diff
changeset
|
4 "1 of 10 (10%)" |
2291a244a887
Added common.string
Joseph Turian <turian@iro.umontreal.ca>
parents:
355
diff
changeset
|
5 """ |
355 | 6 assert a <= b |
7 assert a >= 0 | |
8 assert b > 0 | |
9 return "%s of %s (%.2f%%)" % (a, b, 100.*a/b) |