Learn practical skills, build real-world projects, and advance your career

Practice Workbook

This is practice workbook.

import pandas as pd
df = pd.read_csv("fortune1000.csv")

df["Employees1"] = df.Employees.floordiv(1000) # to divide all by 1000

df["Margin"] = df["Profits"] / df["Revenue"] * 100

df
# Describe everything

df.describe()