Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save techwithshadab/1e8584980d69b57bad48232c1ba64085 to your computer and use it in GitHub Desktop.
Save techwithshadab/1e8584980d69b57bad48232c1ba64085 to your computer and use it in GitHub Desktop.
mar_budget = np.array([60, 80, 100 , 30, 50, 20, 90, 10], dtype=float)
subs_gained = np.array([160, 200, 240, 100, 140, 80, 220, 60], dtype=float)
for i,c in enumerate(mar_budget):
print("{} Market budget = {} new subscribers gained".format(c, subs_gained[i]))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment