(bummered)

Race #6

View Pit Stop page for race #6 by bummeredGhost race

View profile for (bummered)

Official speed 74.92 wpm (30.43 seconds elapsed during race)
Race Start May 28, 2020 8:38:23pm UTC
Race Finish May 28, 2020 8:38:53pm UTC
Outcome Win (1 of 2)
Accuracy 96.0%
Points 28.72
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