View Pit Stop page for race #174 by rana_1996 — Ghost race
View profile for Rana (rana_1996)
Official speed | 33.89 wpm (54.53 seconds elapsed during race) |
---|---|
Race Start | January 15, 2020 12:26:54pm UTC |
Race Finish | January 15, 2020 12:27:48pm UTC |
Outcome | Win (1 of 3) |
Accuracy | 95.0% |
Points | 11.86 |
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") |