🐍 Fun with Python String Methods! 🎉

Let's explore some cool string methods and Jupyter Notebook tricks!

Awesome String Methods

1. upper() - Shout it out!

message = "hello, world!"
print(message.upper())
Output: HELLO, WORLD!

2. lower() - Keep it down!

message = "SHHH, IT'S A SECRET!"
print(message.lower())
Output: shhh, it's a secret!

3. capitalize() - First impressions matter!

message = "python is awesome"
print(message.capitalize())
Output: Python is awesome

📗 Jupyter Notebook Shortcuts 📖

Make your Python learning journey smoother with these Jupyter Notebook shortcuts:

💭 Fun Fact 🌟

Did you know? The name Python comes from "Monty Python's Flying Circus", not the snake! 🐍🎭