View Pit Stop page for race #8 by nikhilnick — Ghost race
View profile for Nikhil Patil (nikhilnick)
Official speed | 34.58 wpm (53.44 seconds elapsed during race) |
---|---|
Race Start | February 3, 2022 6:45:25am UTC |
Race Finish | February 3, 2022 6:46:18am UTC |
Outcome | Win (1 of 3) |
Accuracy | 97.0% |
Points | 12.10 |
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") |