Skip to content

Instantly share code, notes, and snippets.

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