View Pit Stop page for race #42 by karanjain18 — Ghost race
View profile for Karan Jain (karanjain18)
Official speed | 48.06 wpm (38.45 seconds elapsed during race) |
---|---|
Race Start | October 2, 2019 12:48:16pm UTC |
Race Finish | October 2, 2019 12:48:54pm UTC |
Outcome | No win (2 of 3) |
Accuracy | 96.0% |
Points | 16.82 |
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") |