(corsairchris)

Race #14

View Pit Stop page for race #14 by corsairchrisGhost race

View profile for (corsairchris)

Official speed 98.30 wpm (23.19 seconds elapsed during race)
Race Start May 29, 2023 11:31:23am UTC
Race Finish May 29, 2023 11:31:46am UTC
Outcome Win (1 of 3)
Accuracy 99.0%
Points 37.68
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