"""
Topic 01: Introduction & Basic Syntax - EASY Exercises (10)
Challenge yourself to complete these without copying and pasting!
"""
# Exercise 1: Print your name to the console.
# Write your code below:
# Exercise 2: Print the sentence "Python is a powerful language."
# Write your code below:
# Exercise 3: Use a single print statement to print your name and your favorite color on separate lines.
# Hint: Use \n for a new line.
# Write your code below:
# Exercise 4: Print the result of adding 15 and 25.
# Write your code below:
# Exercise 5: Print the text "Learning Python" inside a box made of asterisks (*).
# Example:
# *******************
# * Learning Python *
# *******************
# Write your code below:
# Exercise 6: Write a single-line comment above a print statement that says "This is a comment".
# Write your code below:
# Exercise 7: Write a multi-line comment explaining what the print() function does.
# Write your code below:
# Exercise 8: Print the result of 100 divided by 4 using the print function.
# Write your code below:
# Exercise 9: Print three different words on the same line, separated by a hyphen (-).
# Hint: Look up the 'sep' parameter in the print() function.
# Write your code below:
# Exercise 10: Print the word "Python" five times on the same line.
# Hint: You can use the * operator with strings (e.g., "Hi" * 3).
# Write your code below: