How to modify this code so when the user inputs a sentence and that sentence has a persons initials in it, it'll print out saying "Your sentence has my initials in it? n=input("Enter string here: ") first_space=n.find(" ") print("The first space in the string index is {}".format(first_space)) check_tab_space=False if "\t" in n: check_tab_space=True if(check_tab_space): print("Tab space exist in the string") else: print("Tab space is not exist in the string") each_word_captiliaze=[word.capitalize() for word in n.split(" ")] change=" ".join(each_word_captiliaze) print("Each word first letter convert to captialize:\n{}".format(change)) print("upperCase string {}".format(n.upper())) print("lowerCase string {}".format(n.lower())
How to modify this code so when the user inputs a sentence and that sentence has a persons initials in it, it'll print out saying "Your sentence has my initials in it?
n=input("Enter string here: ") first_space=n.find(" ") print("The first space in the string index is {}".format(first_space)) check_tab_space=False if "\t" in n: check_tab_space=True if(check_tab_space): print("Tab space exist in the string") else: print("Tab space is not exist in the string") each_word_captiliaze=[word.capitalize() for word in n.split(" ")] change=" ".join(each_word_captiliaze) print("Each word first letter convert to captialize:\n{}".format(change)) print("upperCase string {}".format(n.upper())) print("lowerCase string {}".format(n.lower())
![](/static/compass_v2/shared-icons/check-mark.png)
Step by step
Solved in 4 steps with 2 images
![Blurred answer](/static/compass_v2/solution-images/blurred-answer.jpg)
![Computer Networking: A Top-Down Approach (7th Edi…](https://www.bartleby.com/isbn_cover_images/9780133594140/9780133594140_smallCoverImage.gif)
![Computer Organization and Design MIPS Edition, Fi…](https://www.bartleby.com/isbn_cover_images/9780124077263/9780124077263_smallCoverImage.gif)
![Network+ Guide to Networks (MindTap Course List)](https://www.bartleby.com/isbn_cover_images/9781337569330/9781337569330_smallCoverImage.gif)
![Computer Networking: A Top-Down Approach (7th Edi…](https://www.bartleby.com/isbn_cover_images/9780133594140/9780133594140_smallCoverImage.gif)
![Computer Organization and Design MIPS Edition, Fi…](https://www.bartleby.com/isbn_cover_images/9780124077263/9780124077263_smallCoverImage.gif)
![Network+ Guide to Networks (MindTap Course List)](https://www.bartleby.com/isbn_cover_images/9781337569330/9781337569330_smallCoverImage.gif)
![Concepts of Database Management](https://www.bartleby.com/isbn_cover_images/9781337093422/9781337093422_smallCoverImage.gif)
![Prelude to Programming](https://www.bartleby.com/isbn_cover_images/9780133750423/9780133750423_smallCoverImage.jpg)
![Sc Business Data Communications and Networking, T…](https://www.bartleby.com/isbn_cover_images/9781119368830/9781119368830_smallCoverImage.gif)