Niels (nielsjensen)

Race #9

View Pit Stop page for race #9 by nielsjensenGhost race

View profile for Niels (nielsjensen)

Official speed 90.38 wpm (25.23 seconds elapsed during race)
Race Start June 7, 2023 5:32:10am UTC
Race Finish June 7, 2023 5:32:35am UTC
Outcome Win (1 of 3)
Accuracy 97.0%
Points 34.65
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