Bod Soutar wrote:
> mystring = "THIS is A string"
> newstring = ""
> for item in mystring:
> if item.isupper():
> newstring += item.upper()
> else:
> newstring += item.lower()
>
> print newstring
This does nothing the hard way as newstring and mystring are equal ;)
If yo
Did'nt realise this went offlist, my fault
-- Bodsda
-- Forwarded message --
From: Shall, Sydney
Date: 15 March 2013 14:43
Subject: Re: [Tutor] converting upper case to lowercase and vice-versa
To: Bod Soutar
On 15/03/2013 14:30, Bod Soutar wrote:
On 15 March 2013 13:52, Sha