View Pit Stop page for race #1 by bigboiblue — Ghost race
View profile for Kyle (bigboiblue)
Official speed | 33.08 wpm (55.86 seconds elapsed during race) |
---|---|
Race Start | September 13, 2019 3:49:16pm UTC |
Race Finish | September 13, 2019 3:50:12pm UTC |
Outcome | No win (3 of 3) |
Accuracy | 93.0% |
Points | 11.58 |
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") |