View Pit Stop page for race #290 by karanjain18 — Ghost race
View profile for Karan Jain (karanjain18)
Official speed | 59.50 wpm (31.06 seconds elapsed during race) |
---|---|
Race Start | April 13, 2020 1:35:53pm UTC |
Race Finish | April 13, 2020 1:36:24pm UTC |
Outcome | Win (1 of 2) |
Opponents |
2. kiran11621 (26.55 wpm) |
Accuracy | 95.0% |
Points | 20.82 |
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") |