ghoudiy (ghoudiy)

Race #42

View Pit Stop page for race #42 by ghoudiyGhost race

View profile for ghoudiy (ghoudiy)

Official speed 75.12 wpm (30.35 seconds elapsed during race)
Race Start July 11, 2023 2:46:53pm UTC
Race Finish July 11, 2023 2:47:24pm UTC
Outcome Win (1 of 3)
Accuracy 98.0%
Points 28.80
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