Knight_Oikos (knight_oikos)

Race #133

View Pit Stop page for race #133 by knight_oikosGhost race

View profile for Knight_Oikos (knight_oikos)

Official speed 94.23 wpm (24.20 seconds elapsed during race)
Race Start June 9, 2022 1:14:57am UTC
Race Finish June 9, 2022 1:15:21am UTC
Outcome Win (1 of 3)
Accuracy 96.0%
Points 36.12
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