Julian (robthephysician)

Race #10

View Pit Stop page for race #10 by robthephysicianGhost race

View profile for Julian (robthephysician)

Official speed 77.90 wpm (29.27 seconds elapsed during race)
Race Start August 14, 2022 12:32:52am UTC
Race Finish August 14, 2022 12:33:22am UTC
Outcome Win (1 of 3)
Accuracy 96.0%
Points 29.86
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