View Pit Stop page for race #3 by liwamster15 — Ghost race
View profile for Liwamster (liwamster15)
Official speed | 65.14 wpm (28.37 seconds elapsed during race) |
---|---|
Race Start | May 29, 2023 9:14:16pm UTC |
Race Finish | May 29, 2023 9:14:44pm UTC |
Outcome | Win (1 of 3) |
Accuracy | 98.0% |
Points | 22.80 |
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") |