deja vu (zight554)

Race #4

View Pit Stop page for race #4 by zight554Ghost race

View profile for deja vu (zight554)

Official speed 101.83 wpm (22.39 seconds elapsed during race)
Race Start March 1, 2022 2:58:39am UTC
Race Finish March 1, 2022 2:59:01am UTC
Outcome Win (1 of 3)
Accuracy 99.0%
Points 39.03
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