Question: Create a Python program that accepts a string as input. It should analyze some characteristic of that string and display the result of that
Create a Python program that accepts a string as input. It should analyze some characteristic of that string and display the result of that analysis. Some examples are o finding or counting a certain character (such as a letter, space, tab, etc.) in the string. o converting the first letter of each word to upper case. It should also determine if your initials, in any case combination, are inside the string. The program must use at least one of the following: string slices string conditions, using the in keyword or a relational operator o string methods, such as count or find
Step by Step Solution
3.32 Rating (155 Votes )
There are 3 Steps involved in it
source code in python ninputEnter string here firstspacenfind printThe first space in the string ind... View full answer
Get step-by-step solutions from verified subject matter experts
