Skip to content

Instantly share code, notes, and snippets.

View TQuinlivan's full-sized avatar

Torin Quinlivan TQuinlivan

View GitHub Profile
# Fallout Hacking Game by Torin Quinlivan
import random
word_dict = []
password = ''
guesses = 4
def match(str1, str2):
letters_match = 0
from Tkinter import *
def Calculate(price, amount):
cl = [0, 0, 0, 0]
change = amount - price
while (change > 0):
if (change >= 25):
cl[0] += 1
change = change - 25
elif (change >= 10):