View Pit Stop page for race #52 by wmamunhossain — Ghost race
View profile for MAMUN (wmamunhossain)
Official speed | 42.31 wpm (43.68 seconds elapsed during race) |
---|---|
Race Start | March 30, 2023 4:41:33pm UTC |
Race Finish | March 30, 2023 4:42:17pm UTC |
Outcome | Win (1 of 3) |
Accuracy | 98.0% |
Points | 14.81 |
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") |