Aan de slagGa gratis aan de slag

Creating lists in Python

A list in Python can contain any number of elements. You generally create a list using square brackets. For example, to create a list of integers, you can use the following command:

x = [1, 2, 3]

Deze oefening maakt deel uit van de cursus

Introduction to Python for Finance

Cursus bekijken

Oefeninstructies

  • Create a list named names containing the strings 'Apple Inc', 'Coca-Cola', and 'Walmart', in that order.
  • Print names.
  • Create a list named prices containing the price of each stock, $159.54, $37.13, and $71.17, in that order.
  • Print prices.

Praktische interactieve oefening

Probeer deze oefening eens door deze voorbeeldcode in te vullen.

# Create and print list names
names = ____
____

# Create and print list prices
prices = ____
____
Code bewerken en uitvoeren