Ioan (ioans)

Race #26

View Pit Stop page for race #26 by ioansGhost race

View profile for Ioan (ioans)

Official speed 38.03 wpm (59.95 seconds elapsed during race)
Race Start January 20, 2023 4:35:19am UTC
Race Finish January 20, 2023 4:36:19am UTC
Outcome Win (1 of 3)
Accuracy 95.0%
Points 14.58
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