Gábor (gbr22)

Race #6

View Pit Stop page for race #6 by gbr22Ghost race

View profile for Gábor (gbr22)

Official speed 50.41 wpm (45.23 seconds elapsed during race)
Race Start August 10, 2023 8:15:47pm UTC
Race Finish August 10, 2023 8:16:32pm UTC
Outcome Win (1 of 2)
Accuracy 97.0%
Points 19.33
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