Created
August 2, 2019 18:21
-
-
Save techwithshadab/1e8584980d69b57bad48232c1ba64085 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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