View Pit Stop page for race #1 by bernatjp_2020 — Ghost race
View profile for Bernat (bernatjp_2020)
Official speed | 28.77 wpm (64.23 seconds elapsed during race) |
---|---|
Race Start | January 29, 2023 10:57:14am UTC |
Race Finish | January 29, 2023 10:58:18am UTC |
Outcome | No win (3 of 3) |
Accuracy | 94.0% |
Points | 10.07 |
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") |