View Pit Stop page for race #13 by a_anand_12 — Ghost race
View profile for abhishek (a_anand_12)
Official speed | 20.14 wpm (91.76 seconds elapsed during race) |
---|---|
Race Start | November 30, 2022 3:39:29pm UTC |
Race Finish | November 30, 2022 3:41:01pm UTC |
Outcome | No win (2 of 3) |
Accuracy | 93.0% |
Points | 7.05 |
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") |