View Pit Stop page for race #274 by karanjain18 — Ghost race
View profile for Karan Jain (karanjain18)
Official speed | 58.54 wpm (31.57 seconds elapsed during race) |
---|---|
Race Start | April 13, 2020 12:20:46pm UTC |
Race Finish | April 13, 2020 12:21:17pm UTC |
Outcome | Win (1 of 2) |
Opponents |
2. kiran11621 (25.62 wpm) |
Accuracy | 96.0% |
Points | 20.49 |
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") |