View Pit Stop page for race #17 by bhangu_05 — Ghost race
View profile for Amarpreet (bhangu_05)
Official speed | 30.78 wpm (60.04 seconds elapsed during race) |
---|---|
Race Start | November 13, 2021 6:45:31am UTC |
Race Finish | November 13, 2021 6:46:31am UTC |
Outcome | No win (2 of 3) |
Accuracy | 93.0% |
Points | 10.77 |
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") |