Python Basics Homework 21-10-24
Python Basics Homework 21-10-24
Instructions: Complete the following questions and exercises. Write your answers and code
in a notebook or on paper. For the coding tasks, use your Python IDE and submit a screenshot
of your code and the output.
Reminder: Please do not use AI tools to complete this assignment. The goal is to help you
practice and learn Python by doing the exercises yourself.
1. What is Python?
Write a brief definition of Python in 1-2 sentences.
2. What is a Python IDE?
Explain what a Python IDE is and give an example of one commonly used IDE.
1. Print a Greeting
Write a Python program that prints the message:
Hello, Python learners!
2. Simple Math
Write a Python program that calculates and prints the sum of 10 and 25.
3. Your Name
Write a Python program that asks for the user's name and then prints a personalized
greeting like:
Hello, [your name]