Skip to content

Instantly share code, notes, and snippets.

Keybase proof

I hereby claim:

  • I am peconia on github.
  • I am peconia (https://keybase.io/peconia) on keybase.
  • I have a public key ASCVBQ9mXofvXzrLgRt8iBUeWOl_YLgsdKt2nlRlo2HtoAo

To claim this, I am signing this object:

@peconia
peconia / slot_machine.py
Created April 2, 2015 20:00
A command line slot machine game in python 3
import random, time
def reel():
return random.choice('7♣♣♠♠♠♦♦♦♥♥♥♥')
def print_row(first, second, third):
print('[ {} | {} | {} ]'.format(first, second, third,t=time.sleep(.15)), end='\r')
def round():
for i in range(30):