Omer (omer_nukic)

Race #33

View Pit Stop page for race #33 by omer_nukicGhost race

View profile for Omer (omer_nukic)

Official speed 49.45 wpm (46.11 seconds elapsed during race)
Race Start October 9, 2021 12:03:38am UTC
Race Finish October 9, 2021 12:04:24am UTC
Outcome Win (1 of 3)
Accuracy 96.0%
Points 18.96
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