Odo (odo_bean)

Race #1

View Pit Stop page for race #1 by odo_beanGhost race

View profile for Odo (odo_bean)

Official speed 47.12 wpm (48.39 seconds elapsed during race)
Race Start September 10, 2023 2:53:20pm UTC
Race Finish September 10, 2023 2:54:09pm UTC
Outcome Win (1 of 3)
Accuracy 93.0%
Points 18.06
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