Question: s1 = 'Hickory Dickory Dock!' s2 = 'The mouse ran up the clock.' Uses2and one or more string methods to make the list ['TH', 'MOUS',
s1 = 'Hickory Dickory Dock!' s2 = 'The mouse ran up the clock.'
Uses2and one or more string methods to make the list
['TH', 'MOUS', 'RAN UP TH', 'CLOCK.']
Assign the result to the variableanswer5.
Note:The only string in the list that includes any spaces is the third one ('RAN UP TH').
ex)
s1.upper() >>> s1 >>> s2.lower() >>> s2 >>> s2.count('t') >>> s2.lower().count('t') >>> s1.count('or') >>> s1.split() >>> s1.split('y') >>> s1.upper().split('C') >>> s1.replace('or', 'e') >>> s1.replace('or', '') >>> s2.lower().replace('th', 'm') >>> s1 >>> s2
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
