Neer Shrestha (neer_sth)

Race #1

View Pit Stop page for race #1 by neer_sthGhost race

View profile for Neer Shrestha (neer_sth)

Official speed 27.46 wpm (83.03 seconds elapsed during race)
Race Start June 24, 2023 9:44:41am UTC
Race Finish June 24, 2023 9:46:04am UTC
Outcome No win (3 of 3)
Accuracy 94.0%
Points 10.52
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