sdr4wkc48 (sdr4wkc48)

Race #28

View Pit Stop page for race #28 by sdr4wkc48Ghost race

View profile for sdr4wkc48 (sdr4wkc48)

Official speed 59.85 wpm (38.10 seconds elapsed during race)
Race Start February 13, 2023 1:34:12pm UTC
Race Finish February 13, 2023 1:34:50pm UTC
Outcome Win (1 of 3)
Accuracy 97.0%
Points 22.94
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