View Pit Stop page for race #328 by karanjain18 — Ghost race
View profile for Karan Jain (karanjain18)
Official speed | 63.72 wpm (29.00 seconds elapsed during race) |
---|---|
Race Start | May 9, 2020 6:30:15pm UTC |
Race Finish | May 9, 2020 6:30:44pm UTC |
Outcome | No win (2 of 3) |
Accuracy | 98.0% |
Points | 22.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") |