(bummered)

Race #5

View Pit Stop page for race #5 by bummeredGhost race

View profile for (bummered)

Official speed 82.87 wpm (27.51 seconds elapsed during race)
Race Start May 28, 2020 8:35:56pm UTC
Race Finish May 28, 2020 8:36:23pm UTC
Outcome No win (1 of 1)
Accuracy 96.0%
Points 31.77
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