""" String slicing exercise... 1. From the string "Tim and Mishal are funny.", extract text and create/print a new string that says: "Tamim Is Funny." *Every first letter in a word should be capitalized (title format)
2. Print the same string backwards (try searching in google) """
4
5
6
7
8
9
10
1
2
3
says:
"Tamim Is Funny."
*Every first letter in a word should be capitalized (title format)
2. Print the same string backwards (try searching in google)
"""
"""
String slicing exercise...
1. From the string "Tim and Mishal are funny.", extract text and create/print a new string that