View Pit Stop page for race #301 by karanjain18 — Ghost race
View profile for Karan Jain (karanjain18)
Official speed | 66.76 wpm (27.68 seconds elapsed during race) |
---|---|
Race Start | April 14, 2020 6:50:23am UTC |
Race Finish | April 14, 2020 6:50:51am UTC |
Outcome | Win (1 of 2) |
Opponents |
2. kiran11621 (30.54 wpm) |
Accuracy | 98.0% |
Points | 23.37 |
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") |