View Pit Stop page for race #6 by nextpaper — Ghost race
View profile for nextpaper (nextpaper)
Official speed | 40.66 wpm (45.45 seconds elapsed during race) |
---|---|
Race Start | July 18, 2023 5:11:05am UTC |
Race Finish | July 18, 2023 5:11:51am UTC |
Outcome | No win (2 of 2) |
Opponents |
1. kvdipesh (46.95 wpm) |
Accuracy | 99.0% |
Points | 14.23 |
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") |