umbercuc (umbercuc)

Race #1

View Pit Stop page for race #1 by umbercucGhost race

View profile for umbercuc (umbercuc)

Official speed 50.81 wpm (44.87 seconds elapsed during race)
Race Start May 27, 2023 2:01:58pm UTC
Race Finish May 27, 2023 2:02:43pm UTC
Outcome Win (1 of 2)
Accuracy 96.0%
Points 19.48
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