View Pit Stop page for race #2 by sparsh123 — Ghost race
View profile for Sparsh (sparsh123)
Official speed | 53.08 wpm (34.82 seconds elapsed during race) |
---|---|
Race Start | February 9, 2021 11:17:16am UTC |
Race Finish | February 9, 2021 11:17:50am UTC |
Outcome | Win (1 of 3) |
Accuracy | 98.0% |
Points | 18.58 |
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") |