Lui (lui01)

Race #6

View Pit Stop page for race #6 by lui01Ghost race

View profile for Lui (lui01)

Official speed 46.38 wpm (49.16 seconds elapsed during race)
Race Start November 4, 2025 1:39:11am UTC
Race Finish November 4, 2025 1:40:00am UTC
Outcome Win (1 of 3)
Accuracy 94.0%
Points 17.78
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