ed (edward_9x)

Race #3

View Pit Stop page for race #3 by edward_9xGhost race

View profile for ed (edward_9x)

Official speed 76.63 wpm (29.75 seconds elapsed during race)
Race Start August 28, 2023 7:49:56pm UTC
Race Finish August 28, 2023 7:50:26pm UTC
Outcome Win (1 of 2)
Opponents 2. brunellocucinelli (58.37 wpm)
Accuracy 95.0%
Points 29.38
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