typerhuang559 (typerhuang559)

Race #2

View Pit Stop page for race #2 by typerhuang559Ghost race

View profile for typerhuang559 (typerhuang559)

Official speed 39.28 wpm (58.04 seconds elapsed during race)
Race Start August 8, 2023 2:44:07am UTC
Race Finish August 8, 2023 2:45:05am UTC
Outcome Win (1 of 3)
Accuracy 93.0%
Points 15.06
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