I'm new to this site as well as to coding so the question might seem trivial but any help would be great (please don't just answer the problem if possible).
I'm trying to write a function where a string of letter is converted to the amount of lower case (loops and conditional are not allowed). My attempt so far is:
function countLowerCase
string = input('Please enter a string: ');
Lowercase = 'string' > 96 & 'string' <123;
sum(Lowercase)
Thanks in advance.
lower()? It would be even simpler if so.