Knight_Oikos (knight_oikos)

Race #97

View Pit Stop page for race #97 by knight_oikosGhost race

View profile for Knight_Oikos (knight_oikos)

Official speed 93.37 wpm (24.42 seconds elapsed during race)
Race Start April 6, 2022 11:15:08pm UTC
Race Finish April 6, 2022 11:15:32pm UTC
Outcome Win (1 of 3)
Accuracy 95.0%
Points 35.79
Text #10019 (Length: 190 characters)

import string from random import * characters = string.ascii_letters + string.punctuation + string.digits password = "".join(choice(characters) for x in range(randint(8, 16))) print password