Lydia (shiruzu)

Race #704

View Pit Stop page for race #704 by shiruzuGhost race

View profile for Lydia (shiruzu)

Official speed 91.39 wpm (24.95 seconds elapsed during race)
Race Start May 15, 2025 6:32:15pm UTC
Race Finish May 15, 2025 6:32:40pm UTC
Outcome Win (1 of 3)
Accuracy 99.0%
Points 35.03
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