big letter -> small letter

Tony Meyer t-meyer at ihug.co.nz
Tue Jul 6 03:11:32 EDT 2004


> How can i change big letter to small letter ?
> 
> When i tried char=char+32 i received error that can not add 
> int to sring.

>>> 'e'.upper()
'E'
>>> 'E'.lower()
'e'
>>> 

=Tony Meyer




More information about the Python-list mailing list