View Pit Stop page for race #34 by atthetop — Ghost race
View profile for Shoemaker-Levy 9 (atthetop)
Official speed | 67.82 wpm (27.25 seconds elapsed during race) |
---|---|
Race Start | October 31, 2018 11:44:22pm UTC |
Race Finish | October 31, 2018 11:44:49pm UTC |
Outcome | No win (2 of 2) |
Opponents |
1. styrofoam (68.64 wpm) |
Accuracy | 93.0% |
Points | 23.74 |
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") |