(bummered)

Race #7

View Pit Stop page for race #7 by bummeredGhost race

View profile for (bummered)

Official speed 78.55 wpm (29.03 seconds elapsed during race)
Race Start May 28, 2020 8:39:10pm UTC
Race Finish May 28, 2020 8:39:39pm UTC
Outcome Win (1 of 2)
Accuracy 97.0%
Points 30.11
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