View Pit Stop page for race #1 by dennis123123 — Ghost race
View profile for DENNIS (dennis123123)
Official speed | 32.67 wpm (56.57 seconds elapsed during race) |
---|---|
Race Start | July 11, 2023 2:19:33pm UTC |
Race Finish | July 11, 2023 2:20:30pm UTC |
Outcome | No win (2 of 11) |
Opponents |
1. weshente (33.63 wpm) |
Accuracy | 93.0% |
Points | 11.44 |
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") |