Todayโs challenge is about working with text.
โ
Instructions
Make a variable called word with your favorite word.
Print it in all uppercase.
Print it in all lowercase.
๐ Example Code
word = "Python"
print(word.upper()) # PYTHON
print(word.lower()) # python
๐ฌ Post your code in the comments and share your favorite word! ๐