View Pit Stop page for race #506 by karanjain18 — Ghost race
View profile for Karan Jain (karanjain18)
Official speed | 78.51 wpm (23.54 seconds elapsed during race) |
---|---|
Race Start | July 26, 2021 5:03:14am UTC |
Race Finish | July 26, 2021 5:03:37am UTC |
Outcome | No win (3 of 3) |
Accuracy | 98.0% |
Points | 27.48 |
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") |