Userzin (userzin)

Race #26

View Pit Stop page for race #26 by userzinGhost race

View profile for Userzin (userzin)

Official speed 70.73 wpm (32.24 seconds elapsed during race)
Race Start October 19, 2021 3:18:16pm UTC
Race Finish October 19, 2021 3:18:49pm UTC
Outcome Win (1 of 2)
Opponents 2. arnoldchewbacca (68.08 wpm)
Accuracy 98.0%
Points 27.11
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