csati (csati)

Race #14

View Pit Stop page for race #14 by csatiGhost race

View profile for csati (csati)

Official speed 58.64 wpm (38.88 seconds elapsed during race)
Race Start October 4, 2021 3:05:00pm UTC
Race Finish October 4, 2021 3:05:39pm UTC
Outcome Win (1 of 3)
Accuracy 99.0%
Points 22.48
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