Stop (stop__)

Race #15

View Pit Stop page for race #15 by stop__Ghost race

View profile for Stop (stop__)

Official speed 38.58 wpm (59.10 seconds elapsed during race)
Race Start April 15, 2023 9:18:10pm UTC
Race Finish April 15, 2023 9:19:09pm UTC
Outcome Win (1 of 3)
Accuracy 93.0%
Points 14.79
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