View Pit Stop page for race #11 by amnii — Ghost race
View profile for Amn1_putri_chan🕋 (amnii)
Official speed | 29.03 wpm (63.66 seconds elapsed during race) |
---|---|
Race Start | February 11, 2022 4:29:01pm UTC |
Race Finish | February 11, 2022 4:30:05pm UTC |
Outcome | No win (3 of 3) |
Accuracy | 91.0% |
Points | 10.16 |
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") |