Get startedGet started for free

Lists

Stocks in the S&P 100 are selected to represent sector balance and market capitalization. To begin, let's take a look at what data we have associated with S&P companies.

Four lists, names, prices, earnings, and sectors, are available in your workspace.

This exercise is part of the course

Introduction to Python for Finance

View Course

Exercise instructions

  • Print the first four items in names.
  • Print the name, price, earning, and sector associated with the last company in the lists.

Hands-on interactive exercise

Have a go at this exercise by completing this sample code.

# First four items of names
print(names[____])

# Print information on last company
print(names[____])
print(prices[____])
print(earnings[____])
print(sectors[____])
Edit and Run Code