ghtjason (ghtjason)

Race #3

View Pit Stop page for race #3 by ghtjasonGhost race

View profile for ghtjason (ghtjason)

Official speed 76.85 wpm (29.67 seconds elapsed during race)
Race Start August 29, 2023 10:02:33am UTC
Race Finish August 29, 2023 10:03:02am UTC
Outcome Win (1 of 3)
Accuracy 98.0%
Points 29.46
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