View Pit Stop page for race #1 by odort — Ghost race
View profile for Odorless (odort)
Official speed | 31.48 wpm (58.70 seconds elapsed during race) |
---|---|
Race Start | July 4, 2021 8:49:33am UTC |
Race Finish | July 4, 2021 8:50:31am UTC |
Outcome | No win (2 of 2) |
Opponents |
1. rustam687 (53.33 wpm) |
Accuracy | 89.0% |
Points | 11.02 |
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") |