View Pit Stop page for race #353 by karanjain18 — Ghost race
View profile for Karan Jain (karanjain18)
Official speed | 68.06 wpm (27.15 seconds elapsed during race) |
---|---|
Race Start | December 3, 2020 8:05:24pm UTC |
Race Finish | December 3, 2020 8:05:51pm UTC |
Outcome | No win (2 of 3) |
Accuracy | 98.0% |
Points | 23.82 |
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") |