View Pit Stop page for race #4 by kahow — Ghost race
View profile for Roadsweeper Dropping D; (kahow)
Official speed | 52.00 wpm (35.54 seconds elapsed during race) |
---|---|
Race Start | July 24, 2019 3:47:38am UTC |
Race Finish | July 24, 2019 3:48:13am UTC |
Outcome | No win (2 of 3) |
Accuracy | 96.0% |
Points | 18.20 |
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") |