View Pit Stop page for race #461 by karanjain18 — Ghost race
View profile for Karan Jain (karanjain18)
Official speed | 73.25 wpm (25.23 seconds elapsed during race) |
---|---|
Race Start | July 19, 2021 12:47:36pm UTC |
Race Finish | July 19, 2021 12:48:01pm UTC |
Outcome | Win (1 of 3) |
Accuracy | 98.0% |
Points | 25.64 |
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") |