Yohanes (yohanes78)

Race #1

View Pit Stop page for race #1 by yohanes78Ghost race

View profile for Yohanes (yohanes78)

Official speed 37.86 wpm (60.22 seconds elapsed during race)
Race Start August 6, 2023 2:43:13pm UTC
Race Finish August 6, 2023 2:44:13pm UTC
Outcome Win (1 of 3)
Accuracy 93.0%
Points 14.51
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