Lydia (shiruzu)

Race #745

View Pit Stop page for race #745 by shiruzuGhost race

View profile for Lydia (shiruzu)

Official speed 82.58 wpm (27.61 seconds elapsed during race)
Race Start June 6, 2025 5:22:48pm UTC
Race Finish June 6, 2025 5:23:15pm UTC
Outcome Win (1 of 3)
Accuracy 99.0%
Points 31.66
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