Skip to content

Instantly share code, notes, and snippets.

@zemmyang
zemmyang / simple_game.py
Created December 16, 2020 19:26
Simple Betting Game in Python
import random
def intro_banner():
s = "Welcome to the Game!"
print(s)
def game_over():
s = "Game Over. Bye!"