View Pit Stop page for race #4 by hashaam_type — Ghost race
View profile for Hashaam (hashaam_type)
Official speed | 37.00 wpm (49.95 seconds elapsed during race) |
---|---|
Race Start | July 27, 2023 2:11:24pm UTC |
Race Finish | July 27, 2023 2:12:14pm UTC |
Outcome | No win (2 of 3) |
Accuracy | 92.0% |
Points | 12.95 |
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") |