Amarpreet (bhangu_05)

Race #10

View Pit Stop page for race #10 by bhangu_05Ghost race

View profile for Amarpreet (bhangu_05)

Official speed 39.02 wpm (58.43 seconds elapsed during race)
Race Start November 12, 2021 4:03:27am UTC
Race Finish November 12, 2021 4:04:25am UTC
Outcome Win (1 of 3)
Accuracy 95.0%
Points 14.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