Skip to content

Instantly share code, notes, and snippets.

@jcyktor
jcyktor / fighting.py
Created January 21, 2015 05:13
Python Fighting Game
import random
import time
class Player():
def __init__(self, name):
self.health = 100
self.name = name
self.wins = 0