View Pit Stop page for race #30 by kinesis_quake — Ghost race
View profile for Kinesis (kinesis_quake)
Official speed | 71.20 wpm (25.96 seconds elapsed during race) |
---|---|
Race Start | November 19, 2022 8:43:16pm UTC |
Race Finish | November 19, 2022 8:43:42pm UTC |
Outcome | Win (1 of 3) |
Accuracy | 97.0% |
Points | 24.92 |
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") |