View Pit Stop page for race #40 by arnoldchewbacca — Ghost race
View profile for Arnold (arnoldchewbacca)
Official speed | 67.87 wpm (27.23 seconds elapsed during race) |
---|---|
Race Start | November 30, 2021 3:24:09pm UTC |
Race Finish | November 30, 2021 3:24:36pm UTC |
Outcome | Win (1 of 3) |
Accuracy | 98.0% |
Points | 23.75 |
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") |