Yi-Fan (bioniclezx)

Race #318

View Pit Stop page for race #318 by bioniclezxGhost race

View profile for Yi-Fan (bioniclezx)

Official speed 59.37 wpm (38.40 seconds elapsed during race)
Race Start May 27, 2022 1:03:39am UTC
Race Finish May 27, 2022 1:04:17am UTC
Outcome Win (1 of 3)
Accuracy 96.0%
Points 22.76
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