Yuna (yunafix)

Race #2

View Pit Stop page for race #2 by yunafixGhost race

View profile for Yuna (yunafix)

Official speed 48.99 wpm (46.54 seconds elapsed during race)
Race Start March 31, 2021 1:04:56pm UTC
Race Finish March 31, 2021 1:05:42pm UTC
Outcome Win (1 of 2)
Accuracy 97.0%
Points 18.78
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