View Pit Stop page for race #11 by chiltototl — Ghost race
View profile for Chiltototl (chiltototl)
Official speed | 55.57 wpm (33.26 seconds elapsed during race) |
---|---|
Race Start | August 11, 2023 10:53:09pm UTC |
Race Finish | August 11, 2023 10:53:42pm UTC |
Outcome | Win (1 of 3) |
Accuracy | 95.0% |
Points | 19.45 |
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") |