Shane (dfsa)

Race #1

View Pit Stop page for race #1 by dfsaGhost race

View profile for Shane (dfsa)

Official speed 59.85 wpm (38.10 seconds elapsed during race)
Race Start July 18, 2023 12:17:18am UTC
Race Finish July 18, 2023 12:17:56am UTC
Outcome No win (2 of 2)
Accuracy 94.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