Skip to content

Instantly share code, notes, and snippets.

View jmansfi's full-sized avatar

Josh Mansfield jmansfi

View GitHub Profile
'''
International Elo program
Created and Maintained by Joshua Mansfield
Last updated: 31 May 2018
'''
from math import *
class Elo():
def __init__(self):
self.dictionary = {"AUS": 1500, "AUT": 1500, "BEL": 1500, "BRA": 1500, "CAN": 1500, "CAT": 1500, "DEU": 1500, "ESP": 1500, "FRA": 1500, "IRL": 1500, "ITA": 1500, "KOR": 1500, "MEX": 1500, "NLD": 1500, "NOR": 1500, "POL": 1500, "SVK": 1500, "SVN": 1500, "SWE": 1500, "TUR": 1500, "UK": 1500, "USA": 1500}