View Pit Stop page for race #146 by rana_1996 — Ghost race
View profile for Rana (rana_1996)
Official speed | 32.57 wpm (56.74 seconds elapsed during race) |
---|---|
Race Start | December 31, 2019 12:03:04pm UTC |
Race Finish | December 31, 2019 12:04:01pm UTC |
Outcome | Win (1 of 3) |
Accuracy | 93.0% |
Points | 11.40 |
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") |