Taush (tsampley)

Race #15

View Pit Stop page for race #15 by tsampleyGhost race

View profile for Taush (tsampley)

Official speed 70.92 wpm (32.15 seconds elapsed during race)
Race Start June 25, 2021 4:52:48pm UTC
Race Finish June 25, 2021 4:53:20pm UTC
Outcome Win (1 of 3)
Accuracy 98.0%
Points 27.19
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