Knight_Oikos (knight_oikos)

Race #36

View Pit Stop page for race #36 by knight_oikosGhost race

View profile for Knight_Oikos (knight_oikos)

Official speed 93.36 wpm (24.42 seconds elapsed during race)
Race Start March 15, 2022 5:10:20am UTC
Race Finish March 15, 2022 5:10:44am UTC
Outcome Win (1 of 3)
Accuracy 96.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