View Pit Stop page for race #1 by kanto — Ghost race
View profile for MySpaceBarIsBroken (kanto)
Official speed | 60.87 wpm (30.36 seconds elapsed during race) |
---|---|
Race Start | August 4, 2018 3:09:32pm UTC |
Race Finish | August 4, 2018 3:10:03pm UTC |
Outcome | No win (2 of 2) |
Accuracy | 94.0% |
Points | 21.30 |
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") |