Question

Write a Python program that prints (displays) your name, address, tele number. grade, course, and school name.
name: Tyress
address: 2910 Boyd st
telephone #: 501 - 410 - 6135
grade: 10th
course: programming
school name: Little Rock Southwest High School

Answers

GPT-4o mini
Here's a simple Python program that will display the specified information:

```python
# Program to display personal information

def display_information():
name = "Tyress"
address = "2910 Boyd St"
telephone = "501-410-6135"
grade = "10th"
course = "Programming"
school_name = "Little Rock Southwest High School"

print("Name:", name)
print("Address:", address)
print("Telephone #:", telephone)
print("Grade:", grade)
print("Course:", course)
print("School Name:", school_name)

# Call the function to display information
display_information()
```

You can run this code in any Python environment, and it will print out the specified details.

Related Questions