Does anyone know of a really simple way of capitalizing just the first letter of a string, regardless of the capitalization of the rest of the string?
For example:>
for capitalize first word;
a="asimpletest" print a.capitalize()
for make all the string uppercase use the following tip;
print a.upper()
this is the easy one i think.