View Pit Stop page for race #4 by shivang_fatheracer — Ghost race
View profile for better than everyone (shivang_fatheracer)
Official speed | 28.94 wpm (63.86 seconds elapsed during race) |
---|---|
Race Start | July 13, 2021 3:13:18am UTC |
Race Finish | July 13, 2021 3:14:22am UTC |
Outcome | No win (2 of 3) |
Accuracy | 94.0% |
Points | 10.13 |
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") |