Chase (chase626)

Race #8

View Pit Stop page for race #8 by chase626Ghost race

View profile for Chase (chase626)

Official speed 51.34 wpm (44.41 seconds elapsed during race)
Race Start April 18, 2022 7:39:37am UTC
Race Finish April 18, 2022 7:40:22am UTC
Outcome Win (1 of 3)
Accuracy 96.0%
Points 19.68
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