1. Personal Messages
Use a variable to represent your name and write a message like the following:
"Hello, my name is [your_name]."
2. Name Cases
Use a variable to represent your full name and then print that in lowercase, uppercase, and title case.
3. Famous Quote
Try to print the following sentence in Python. Print each line separately.
"A person who never made a mistake
never tried anything new."
- Albert Einstein4. Famous Quote 2
Try to print the text in no.3 again but this time, wake a new variable called famous_person and replace Albert Einstein using that.
5. Stripping The Whitespaces
In the code, use each of the three stripping functions, lstrip(), rstrip(), and strip() to get rid the whitespaces.
6. Escape Characters
Some of the characters cannot appear in print. Search in the web a way to print the following sentence:
He said, "I'm so f#@%ed!"