View Pit Stop page for race #27 by amnii — Ghost race
View profile for Amn1_putri_chan🕋 (amnii)
Official speed | 28.11 wpm (65.74 seconds elapsed during race) |
---|---|
Race Start | June 7, 2022 3:33:03am UTC |
Race Finish | June 7, 2022 3:34:09am UTC |
Outcome | No win (3 of 3) |
Accuracy | 92.0% |
Points | 9.84 |
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") |