View Pit Stop page for race #15 by henryv70 — Ghost race
View profile for TheProdigyHenry (henryv70)
Official speed | 49.23 wpm (37.54 seconds elapsed during race) |
---|---|
Race Start | November 27, 2019 9:14:02pm UTC |
Race Finish | November 27, 2019 9:14:40pm UTC |
Outcome | No win (3 of 3) |
Opponents |
1. arc_sec (102.54 wpm) 2. lesirh (80.89 wpm) |
Accuracy | 97.0% |
Points | 17.23 |
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") |