Knight_Oikos (knight_oikos)

Race #53

View Pit Stop page for race #53 by knight_oikosGhost race

View profile for Knight_Oikos (knight_oikos)

Official speed 104.91 wpm (21.73 seconds elapsed during race)
Race Start March 28, 2022 9:56:26am UTC
Race Finish March 28, 2022 9:56:48am UTC
Outcome Win (1 of 3)
Accuracy 98.0%
Points 40.22
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