- We will hire 3 developers at a total cost of £90,000 and our CEO will be paid £60,000
- I know that nobody will do this right now but you’ll wish you had in 2 years
Entrepreneurship for mathematicians
biz_plan_final_final_emk_edit_3.docxfrom IPython.display import Markdown
from tabulate import tabulate
import pandas as pd
sheet_id = "1JcipzU0OWbHzzAqlHORnNgs322ax-J4ceqzbnS_z6aY"
df = pd.read_csv(f"https://docs.google.com/spreadsheets/d/{sheet_id}/export?format=csv")
business_data = df.to_dict()
CEOCost = business_data["CEOCost"][0]
DeveloperHires = business_data["DeveloperHires"][0]
DeveloperCost = business_data["DeveloperCost"][0]
...
Markdown(f'''
- We will hire {DeveloperHires} developers at
a total cost of £{DeveloperHires * DeveloperCost:,} and our CEO will be paid £{CEOCost:,}''')
...| Feature | Competitor 1 | Competitor 2 | Competitor 3 | Us |
|---|---|---|---|---|
| Important feature | ✅ | ✅ | ✅ | ✅ |
| Pointless feature 1 | ❌ | ❌ | ❌ | ✅ |
| Pointless feature 2 | ❌ | ❌ | ❌ | ✅ |
| Pointless feature 3 | ❌ | ❌ | ❌ | ✅ |
| Pointless feature 4 | ❌ | ❌ | ❌ | ✅ |
| Pointless feature 5 | ❌ | ❌ | ❌ | ✅ |
| Another important feature | ✅ | ✅ | ✅ | ✅ |