modestas (modestas_)

Race #1

View Pit Stop page for race #1 by modestas_Ghost race

View profile for modestas (modestas_)

Official speed 48.36 wpm (47.15 seconds elapsed during race)
Race Start August 27, 2020 5:42:36am UTC
Race Finish August 27, 2020 5:43:24am UTC
Outcome Win (1 of 3)
Accuracy 94.0%
Points 18.54
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