Linsk (linsk)

Race #8

View Pit Stop page for race #8 by linskGhost race

View profile for Linsk (linsk)

Official speed 59.67 wpm (38.21 seconds elapsed during race)
Race Start February 25, 2019 1:36:17pm UTC
Race Finish February 25, 2019 1:36:55pm UTC
Outcome Win (1 of 3)
Accuracy 96.0%
Points 22.87
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