
Nov. 27, 2000
1:30 a.m.
Charles wrote:
On the other hand it is not clear to me why "capwords" and "zfill" did not become methods of string objects.
fwiw, they were both present in my original unicode implementation:
from unicode import unicode a = unicode("hello world") a.capwords() 'Hello World' a.zfill(20) '000000000hello world'
</F>