View Pit Stop page for race #1 by spondulix — Ghost race
View profile for spondunoob (spondulix)
Official speed | 66.03 wpm (27.99 seconds elapsed during race) |
---|---|
Race Start | February 16, 2019 5:41:11am UTC |
Race Finish | February 16, 2019 5:41:39am UTC |
Outcome | No win (4 of 5) |
Opponents |
1. sidd_ (116.25 wpm) 2. deroche1 (97.62 wpm) 3. arc_sec (85.72 wpm) 5. actuallynonquitforlife (57.44 wpm) |
Accuracy | 97.0% |
Points | 23.11 |
Text | #10002 (Length: 154 characters) import os import sys def run(program, *args): pid = os.fork() if not pid: os.execvp(program, program + args) return os.wait()[0] run("python", "hello.py") |