Jackie (laserelite)

Race #4

View Pit Stop page for race #4 by lasereliteGhost race

View profile for Jackie (laserelite)

Official speed 77.33 wpm (29.48 seconds elapsed during race)
Race Start May 22, 2023 5:09:55pm UTC
Race Finish May 22, 2023 5:10:24pm UTC
Outcome Win (1 of 3)
Accuracy 96.0%
Points 29.64
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