Please Help me on this code using python it says the parameter name is convert_to_upper: (list of strs) -> NoneType and the description is Convert the strs in the given list to uppercase. Pleasee Helpp
@genius12
To convert all the characters in upper case, or only those which are in lower case ?
to convert all of characters to upper case
i dont know which code to apply and if we are using what code
any luck @Stom
was searching this on google, stumbled into this, could make any sense out of it, http://stackoverflow.com/questions/915391/how-to-convert-specific-character-sequences-in-a-string-to-upper-case-using-pyth
if you are able to solve it , please share it here, i would like to know how its done
There's a string method called upper() that converts everything to uppercase. So all you need to do is walk through the list of strings using a for loop and for every string str, set it equal to str.upper().
Join our real-time social learning platform and learn together with your friends!