View Pit Stop page for race #36 by rektless — Ghost race
View profile for -ˏˋ 🌟 ˎˊ- (rektless)
Official speed | 66.64 wpm (34.21 seconds elapsed during race) |
---|---|
Race Start | March 30, 2023 9:06:24pm UTC |
Race Finish | March 30, 2023 9:06:58pm UTC |
Outcome | Win (1 of 3) |
Accuracy | 95.0% |
Points | 25.55 |
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 |