ackermanmoriii / python-fundamentals

0 stars 0 forks source link

introduce List to 7 yo #15

Open ackermanmoriii opened 5 months ago

ackermanmoriii commented 5 months ago

Absolutely, I'd be happy to help you learn about Python lists with a real-world example!

Imagine you have a toy box where you keep all your favorite toys. Each toy has its own special place in the box. In Python, a list is like that toy box, and each toy is an item in the list.

Here's how you can create a list of your toys in Python:

toys = ['teddy bear', 'robot', 'puzzle', 'doll']

In this list, toys, we have four items: a teddy bear, a robot, a puzzle, and a doll. Just like in your toy box, you can put any toys you want into the list.

Now, let's say you want to find out what the first toy in your list is. In Python, we start counting from 0, so the first toy is at position 0. Here's how you can get it:

first_toy = toys[0]
print(first_toy)

This will print out teddy bear, because that's the first item in your list.

You can also add more toys to your list. Let's add a 'car' to your list of toys:

toys.append('car')
print(toys)

Now, when you print your toys list, it will show ['teddy bear', 'robot', 'puzzle', 'doll', 'car']. The append method adds the car to the end of your list.

Remember, just like your toy box can hold many different toys, a Python list can hold many different items, and you can always add more or take some out whenever you want! πŸ§ΈπŸ€–πŸ§©πŸŽŽ