(needforaccuracy)

Race #3

View Pit Stop page for race #3 by needforaccuracyGhost race

View profile for (needforaccuracy)

Official speed 71.53 wpm (31.87 seconds elapsed during race)
Race Start August 16, 2023 6:34:38am UTC
Race Finish August 16, 2023 6:35:10am UTC
Outcome Win (1 of 3)
Accuracy 94.0%
Points 27.42
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