idk man (ithatme)

Race #21

View Pit Stop page for race #21 by ithatmeGhost race

View profile for idk man (ithatme)

Official speed 73.73 wpm (30.92 seconds elapsed during race)
Race Start May 25, 2023 3:47:03pm UTC
Race Finish May 25, 2023 3:47:34pm UTC
Outcome Win (1 of 3)
Accuracy 98.0%
Points 28.26
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