Skip to content

Instantly share code, notes, and snippets.

@imsickofmaps
Created January 29, 2018 13:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save imsickofmaps/060c2022d805ffcd326d65544425daba to your computer and use it in GitHub Desktop.
Save imsickofmaps/060c2022d805ffcd326d65544425daba to your computer and use it in GitHub Desktop.
products = ["savings", "loans", "insurance"]
agents = ["person1", "person2"]
i = 1
for product in products:
k = 1
for people in agents:
no_of_cases_to_create = k + i
print(product, people)
for c in range(no_of_cases_to_create):
print("Created case")
k += 1
i += 1
print ( "\n")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment