Johan7205 (joze7205)

Race #18

View Pit Stop page for race #18 by joze7205Ghost race

View profile for Johan7205 (joze7205)

Official speed 56.72 wpm (40.20 seconds elapsed during race)
Race Start August 31, 2023 1:01:39pm UTC
Race Finish August 31, 2023 1:02:19pm UTC
Outcome Win (1 of 3)
Accuracy 98.0%
Points 21.74
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