Answer:
mystring = "My name is David Acheme"
count = 0
for i in mystring:
if(i.islower()):
count=count+1
print("The number of lowercase characters in: "+mystring)
print(count)
Explanation:
1. We declare a String Variable and assign a value.
2. Intialize a count variable to zero.
3. Using a for loop is to loop through each characters in the string.
4. The if condition checks when a lower case character is encountered using the islower method and increases count by 1
5. Prints the value of count.
Answer:
First remove ur mask then am to give you the evolutions
Answer: I think its the last one, there is often more than one right choice :)
Answer:
sorry if it is too late but I think it is d
Explanation: