Fide Rating Calculate for Unrated
Fide Rating Calculate for Unrated Player This is coding only to calculate rating for unrated player... So, Get your results from chess results and paste in txt file like show in below.... Then copy and paste these code in your py file and run it.... CODE: with open('rating.txt', 'r') as file: result = [line.strip() for line in file] dp = {"0" : "800", "0.01" : "677", "0.02" : "589", "0.03" : "538", "0.04" : "501", "0.05" : "470", "0.06" : "444", "0.07" : "422", "0.08" : "401", "0.09" : "383", "0.1" : "366", "0.11" : "351", "0.12" : "336", "0.13" : "322", "0.14" : "309", "0.15" : "296", ...