#
# ps12pr1.py - starter code for Problem Set 12, problem 1
# Fall 2021
#


s1 = 'Three little kittens lost their mittens'
s2 = 'Star light, star bright'


# count all occurrences of the letter T (both upper-case and lower-case) in s1, 
# and assign the count to the variable answer0
answer0 = s1.count('T') + s1.count('t')

# do your work here!






# put any print statements/test code inside this controlled block:
if __name__ == '__main__':
    
    print('s1 =', s1)
    print('s2 =', s2)
    
    print('answer0 =', answer0)
    
    # optional: add your test code here
    
    

