View Pit Stop page for race #6 by hauhauh — Ghost race
View profile for Hau (hauhauh)
Official speed | 27.14 wpm (68.09 seconds elapsed during race) |
---|---|
Race Start | August 15, 2021 6:42:59pm UTC |
Race Finish | August 15, 2021 6:44:07pm UTC |
Outcome | Win (1 of 3) |
Accuracy | 96.0% |
Points | 9.50 |
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") |