Ankit Kumar (lazzy_turtle)

Race #5

View Pit Stop page for race #5 by lazzy_turtleGhost race

View profile for Ankit Kumar (lazzy_turtle)

Official speed 50.34 wpm (45.29 seconds elapsed during race)
Race Start May 24, 2023 7:20:05pm UTC
Race Finish May 24, 2023 7:20:50pm UTC
Outcome Win (1 of 3)
Accuracy 96.0%
Points 19.30
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