nullchilly (tuwuna)

Race #18

View Pit Stop page for race #18 by tuwunaGhost race

View profile for nullchilly (tuwuna)

Official speed 79.58 wpm (28.65 seconds elapsed during race)
Race Start November 12, 2021 1:52:07pm UTC
Race Finish November 12, 2021 1:52:36pm UTC
Outcome Win (1 of 3)
Accuracy 97.0%
Points 30.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