Skip to content

PRO TIP Block youtube.com at the DNS level — Pi-hole, NextDNS or your hosts file — but allow youtube-nocookie.com and i.ytimg.com. These tutorials keep playing; the rabbit hole does not.

Learning without distractions

Selection in Pandas is easy! 🎯

13.8K views on YouTube

#coding #python #programming

Selection in Pandas means pulling out specific data from a Series or DataFrame.

import pandas as pd

df = pd.read_csv(“data.csv”, index_col=”Name”)

pokemon = input(“Enter a Pokemon name: “)

try:
print(df.loc[pokemon])
except KeyError:
print(f”{pokemon} not found”)