hobbit (hobbitus)

Race #2

View Pit Stop page for race #2 by hobbitusGhost race

View profile for hobbit (hobbitus)

Official speed 34.59 wpm (65.91 seconds elapsed during race)
Race Start February 28, 2021 7:40:37pm UTC
Race Finish February 28, 2021 7:41:42pm UTC
Outcome Win (1 of 3)
Accuracy 94.0%
Points 13.26
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