Taush (tsampley)

Race #2

View Pit Stop page for race #2 by tsampleyGhost race

View profile for Taush (tsampley)

Official speed 76.97 wpm (29.62 seconds elapsed during race)
Race Start June 21, 2021 3:14:17pm UTC
Race Finish June 21, 2021 3:14:46pm UTC
Outcome Win (1 of 3)
Accuracy 98.0%
Points 29.51
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