Stefan (stoofstoofstoof)

Race #5

View Pit Stop page for race #5 by stoofstoofstoofGhost race

View profile for Stefan (stoofstoofstoof)

Official speed 71.45 wpm (31.91 seconds elapsed during race)
Race Start July 10, 2023 5:18:19pm UTC
Race Finish July 10, 2023 5:18:51pm UTC
Outcome Win (1 of 3)
Accuracy 96.0%
Points 27.39
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