Nick (uncreativeboi)

Race #5

View Pit Stop page for race #5 by uncreativeboiGhost race

View profile for Nick (uncreativeboi)

Official speed 78.60 wpm (29.01 seconds elapsed during race)
Race Start August 13, 2020 11:20:08pm UTC
Race Finish August 13, 2020 11:20:37pm UTC
Outcome Win (1 of 3)
Accuracy 98.0%
Points 30.13
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