KostyaKochegar (kostya_kochegar)

Race #1

View Pit Stop page for race #1 by kostya_kochegarGhost race

View profile for KostyaKochegar (kostya_kochegar)

Official speed 61.25 wpm (37.22 seconds elapsed during race)
Race Start May 25, 2023 11:45:13am UTC
Race Finish May 25, 2023 11:45:50am UTC
Outcome Win (1 of 3)
Accuracy 93.0%
Points 23.48
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