View Pit Stop page for race #129 by karanjain18 — Ghost race
View profile for Karan Jain (karanjain18)
Official speed | 51.88 wpm (35.62 seconds elapsed during race) |
---|---|
Race Start | November 29, 2019 8:33:37pm UTC |
Race Finish | November 29, 2019 8:34:12pm UTC |
Outcome | No win (3 of 3) |
Accuracy | 96.0% |
Points | 18.16 |
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") |