Knight_Oikos (knight_oikos)

Race #117

View Pit Stop page for race #117 by knight_oikosGhost race

View profile for Knight_Oikos (knight_oikos)

Official speed 93.83 wpm (24.30 seconds elapsed during race)
Race Start April 25, 2022 4:13:53am UTC
Race Finish April 25, 2022 4:14:18am UTC
Outcome Win (1 of 3)
Accuracy 96.0%
Points 35.97
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