View Pit Stop page for race #92 by hellothen — Ghost race
View profile for SalmanMKC (hellothen)
Official speed | 69.56 wpm (26.57 seconds elapsed during race) |
---|---|
Race Start | January 30, 2019 1:10:18pm UTC |
Race Finish | January 30, 2019 1:10:45pm UTC |
Outcome | Win (1 of 2) |
Opponents |
2. poem (59.49 wpm) |
Accuracy | 98.0% |
Points | 24.35 |
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") |