View Pit Stop page for race #31 by kinesis_quake — Ghost race
View profile for Kinesis (kinesis_quake)
Official speed | 92.95 wpm (19.88 seconds elapsed during race) |
---|---|
Race Start | November 19, 2022 8:44:06pm UTC |
Race Finish | November 19, 2022 8:44:26pm UTC |
Outcome | Win (1 of 3) |
Accuracy | 99.0% |
Points | 32.53 |
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") |