Skip to content

Instantly share code, notes, and snippets.

@stephengruppetta
Created May 7, 2023 09:12
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 stephengruppetta/d0c49077860a2c569404b9d5db08bee9 to your computer and use it in GitHub Desktop.
Save stephengruppetta/d0c49077860a2c569404b9d5db08bee9 to your computer and use it in GitHub Desktop.
import random
for _ in range(10):
if random.random() < 0.5:
print("Heads", end=" ")
else:
print("Tails", end=" ")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment