View Pit Stop page for race #20 by concurrent — Ghost race
View profile for account deleted (concurrent)
Official speed | 47.59 wpm (38.83 seconds elapsed during race) |
---|---|
Race Start | January 3, 2020 3:41:54pm UTC |
Race Finish | January 3, 2020 3:42:33pm UTC |
Outcome | No win (2 of 3) |
Accuracy | 96.0% |
Points | 16.66 |
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") |