Skip to content

Instantly share code, notes, and snippets.

@rizsotto
Created November 28, 2017 10:52
Show Gist options
  • Save rizsotto/b42ba7512b2854264c818407ad404d9d to your computer and use it in GitHub Desktop.
Save rizsotto/b42ba7512b2854264c818407ad404d9d to your computer and use it in GitHub Desktop.
import random
import itertools
import collections
import pprint
def flip():
return bool(random.randint(0, 1))
def flips(count):
return (flip() for _ in range(0, count))
def double_flips(count):
return zip(flips(count), flips(count))
experiment = double_flips(100)
stats = collections.Counter(experiment)
pprint.pprint(stats)
@gyav-pl2
Copy link

gyav-pl2 commented Jun 4, 2024

With any homework, sometimes you need help. It is difficult for nursing students to find the time to keep up with all the assignments and clinical responsibilities. I turned to https://myhomeworkdone.com/nursing-homework-help.html for nursing homework help, hoping to alleviate some of my academic workload. The registration and ordering process on the site was convenient and efficient, allowing me to get the help I needed quickly.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment