Type like never before! (realdill)

Race #59

View Pit Stop page for race #59 by realdillGhost race

View profile for Type like never before! (realdill)

Official speed 65.95 wpm (34.57 seconds elapsed during race)
Race Start January 15, 2022 6:57:18pm UTC
Race Finish January 15, 2022 6:57:52pm UTC
Outcome Win (1 of 3)
Accuracy 94.0%
Points 25.28
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