luvcoding (lovecoding)

Race #2

View Pit Stop page for race #2 by lovecodingGhost race

View profile for luvcoding (lovecoding)

Official speed 117.91 wpm (19.34 seconds elapsed during race)
Race Start June 24, 2023 5:59:55pm UTC
Race Finish June 24, 2023 6:00:14pm UTC
Outcome Win (1 of 3)
Accuracy 98.0%
Points 45.20
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