Daniele (sorry_im_a_noob)

Race #6

View Pit Stop page for race #6 by sorry_im_a_noobGhost race

View profile for Daniele (sorry_im_a_noob)

Official speed 64.09 wpm (35.58 seconds elapsed during race)
Race Start August 15, 2023 1:37:32pm UTC
Race Finish August 15, 2023 1:38:08pm UTC
Outcome Win (1 of 3)
Accuracy 96.0%
Points 24.57
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