""" Write a program that reads 10 strings and counts the number of strings that starts with upper case letter. """ def main(): count=0 for i in range(10): str=input("enter string ") if(str[0].isupper()): count+=1 print(count) main()