View Pit Stop page for race #8 by somebody_nit — Ghost race
View profile for somebody (somebody_nit)
Official speed | 24.75 wpm (74.67 seconds elapsed during race) |
---|---|
Race Start | August 3, 2023 5:22:00pm UTC |
Race Finish | August 3, 2023 5:23:14pm UTC |
Outcome | No win (2 of 2) |
Opponents |
1. butterflydns (35.07 wpm) |
Accuracy | 92.0% |
Points | 8.66 |
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") |