Pixel (pixelawesome)

Race #1

View Pit Stop page for race #1 by pixelawesomeGhost race

View profile for Pixel (pixelawesome)

Official speed 55.76 wpm (40.89 seconds elapsed during race)
Race Start June 6, 2021 12:39:15am UTC
Race Finish June 6, 2021 12:39:56am UTC
Outcome Win (1 of 3)
Accuracy 95.0%
Points 21.37
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