Bummer! This is just a preview. You need to be signed in with an account to view the entire instruction.
Instruction
Accessing a Series
Accessing a Series
There are multiple ways to get to the data stored in your Series. Let's explore the balances Series.
Remember, the Series is indexed by username. The label is the username, the value is that user's cash balance.
# Setup
import pandas as pd
from utils import render
# Standard Python dictionary
test_balance_data = {
'pasan': 20.00,
'treasure': 20.18,
'ash...