lucid (yung_lucid)

Race #1

View Pit Stop page for race #1 by yung_lucidGhost race

View profile for lucid (yung_lucid)

Official speed 86.79 wpm (26.27 seconds elapsed during race)
Race Start May 8, 2024 4:56:40pm UTC
Race Finish May 8, 2024 4:57:06pm UTC
Outcome Win (1 of 3)
Accuracy 97.0%
Points 33.27
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