View Pit Stop page for race #360 by karanjain18 — Ghost race
View profile for Karan Jain (karanjain18)
Official speed | 70.40 wpm (26.25 seconds elapsed during race) |
---|---|
Race Start | December 8, 2020 7:24:46pm UTC |
Race Finish | December 8, 2020 7:25:12pm UTC |
Outcome | No win (2 of 3) |
Accuracy | 98.0% |
Points | 24.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") |