(l)Knoch (lkoch)

Race #24

View Pit Stop page for race #24 by lkochGhost race

View profile for (l)Knoch (lkoch)

Official speed 20.69 wpm (110.20 seconds elapsed during race)
Race Start August 15, 2023 1:38:12pm UTC
Race Finish August 15, 2023 1:40:02pm UTC
Outcome Win (1 of 3)
Accuracy 90.0%
Points 7.93
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