punit (thakelatyper)

Race #15

View Pit Stop page for race #15 by thakelatyperGhost race

View profile for punit (thakelatyper)

Official speed 51.33 wpm (44.42 seconds elapsed during race)
Race Start July 10, 2022 5:06:11am UTC
Race Finish July 10, 2022 5:06:56am UTC
Outcome Win (1 of 3)
Accuracy 98.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