View Pit Stop page for race #348 by karanjain18 — Ghost race
View profile for Karan Jain (karanjain18)
Official speed | 70.43 wpm (26.24 seconds elapsed during race) |
---|---|
Race Start | September 9, 2020 7:25:08pm UTC |
Race Finish | September 9, 2020 7:25:35pm UTC |
Outcome | No win (3 of 3) |
Accuracy | 98.0% |
Points | 24.65 |
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") |