View Pit Stop page for race #279 by karanjain18 — Ghost race
View profile for Karan Jain (karanjain18)
Official speed | 57.78 wpm (31.98 seconds elapsed during race) |
---|---|
Race Start | April 13, 2020 12:53:02pm UTC |
Race Finish | April 13, 2020 12:53:34pm UTC |
Outcome | Win (1 of 2) |
Opponents |
2. kiran11621 (25.51 wpm) |
Accuracy | 94.0% |
Points | 20.22 |
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") |