Shirou (ness_20xx)

Race #3

View Pit Stop page for race #3 by ness_20xxGhost race

View profile for Shirou (ness_20xx)

Official speed 66.96 wpm (34.05 seconds elapsed during race)
Race Start February 10, 2019 7:43:54pm UTC
Race Finish February 10, 2019 7:44:28pm UTC
Outcome No win (2 of 4)
Opponents 1. delirious (121.10 wpm)
3. poem (62.32 wpm)
4. hyper_racer (47.90 wpm)
5. jjz03 (41.17 wpm)
Accuracy 94.0%
Points 25.67
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