luvcoding (lovecoding)

Race #1

View Pit Stop page for race #1 by lovecodingGhost race

View profile for luvcoding (lovecoding)

Official speed 82.81 wpm (27.53 seconds elapsed during race)
Race Start June 24, 2023 5:58:40pm UTC
Race Finish June 24, 2023 5:59:07pm UTC
Outcome Win (1 of 2)
Accuracy 98.0%
Points 31.74
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