View Pit Stop page for race #3 by chocola97 — Ghost race
View profile for Chocola (chocola97)
Official speed | 36.59 wpm (50.51 seconds elapsed during race) |
---|---|
Race Start | August 1, 2023 6:05:35am UTC |
Race Finish | August 1, 2023 6:06:26am UTC |
Outcome | No win (2 of 4) |
Opponents |
1. jankyv8 (45.25 wpm) 3. nathalia97 (27.40 wpm) |
Accuracy | 93.0% |
Points | 12.81 |
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") |