Skip to content

Instantly share code, notes, and snippets.

@vejuhust
Created January 9, 2014 15:31
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 vejuhust/8335925 to your computer and use it in GitHub Desktop.
Save vejuhust/8335925 to your computer and use it in GitHub Desktop.
In Agile development, we usually use hours to estimate our projects, and it's not easy to make it accurate. This little tool might be useful to you.
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import random
x = int(raw_input("how many work items do you have? "))
hours = [4,6,6,8,8,8,8,10,10,12,14]
for i in range(x):
print random.choice(hours)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment