How do you great program that reads a string and makes each alternate character an Uppercase and each other alternate character a lowercase character.
Asked
Active
Viewed 133 times
0
-
you should iterate through the characters of the string and work on each character - check the answer: http://stackoverflow.com/questions/27231371/who-can-i-change-case-in-python-make-upper-lower-and-vice-versa-python#answer-41448194 – Picard Apr 27 '17 at 19:38
-
Possible duplicate of [who can i change case in python make upper lower and vice versa python](http://stackoverflow.com/questions/27231371/who-can-i-change-case-in-python-make-upper-lower-and-vice-versa-python) – RandallShanePhD Apr 28 '17 at 04:05