beachturkey (beachtukrey)

Race #10

View Pit Stop page for race #10 by beachtukreyGhost race

View profile for beachturkey (beachtukrey)

Official speed 77.99 wpm (29.23 seconds elapsed during race)
Race Start June 27, 2023 1:38:49pm UTC
Race Finish June 27, 2023 1:39:18pm UTC
Outcome Win (1 of 2)
Accuracy 95.0%
Points 29.90
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