Skip to content

Instantly share code, notes, and snippets.

View dancanyego's full-sized avatar
😎
Data Specialist

dancanyego

😎
Data Specialist
View GitHub Profile
@dancanyego
dancanyego / war_game.py
Created April 11, 2023 20:47 — forked from damianesteban/war_game.py
python war card game oop
import random
################################################################################
def main():
table = Table(['Matthew', 'Mark', 'Luke', 'John'])
table.deal_cards()
table.play_all()
def print_underline(string, line):