View Pit Stop page for race #273 by karanjain18 — Ghost race
View profile for Karan Jain (karanjain18)
Official speed | 56.86 wpm (32.50 seconds elapsed during race) |
---|---|
Race Start | April 13, 2020 12:19:13pm UTC |
Race Finish | April 13, 2020 12:19:45pm UTC |
Outcome | Win (1 of 2) |
Opponents |
2. kiran11621 (27.92 wpm) |
Accuracy | 97.0% |
Points | 19.90 |
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") |