View Pit Stop page for race #57 by hamza_g — Ghost race
View profile for Hamza (hamza_g)
Official speed | 37.86 wpm (48.81 seconds elapsed during race) |
---|---|
Race Start | August 3, 2022 10:59:40am UTC |
Race Finish | August 3, 2022 11:00:29am UTC |
Outcome | No win (3 of 3) |
Accuracy | 93.0% |
Points | 13.25 |
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") |