Question

Write a program that prints your name and something you like to do. Make sure your program includes the phrases “My name ” and “I like ” to pass the grader.

Here’s an example of what your program could display:

My name is Eleanor.
I like writing Python programs!

Answers

GPT-4o mini
Sure! Here’s a simple Python program that prints my name and something I like to do:

```python
# This program prints my name and something I like to do

print("My name is Assistant.")
print("I like helping people with programming!")
```

You can run this program in any Python environment, and it will display the specified output.

Related Questions