View Pit Stop page for race #355 by karanjain18 — Ghost race
View profile for Karan Jain (karanjain18)
Official speed | 64.02 wpm (28.87 seconds elapsed during race) |
---|---|
Race Start | December 3, 2020 9:14:30pm UTC |
Race Finish | December 3, 2020 9:14:59pm UTC |
Outcome | No win (3 of 3) |
Accuracy | 97.0% |
Points | 22.41 |
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") |