View Pit Stop page for race #5 by typingnoob2 — Ghost race
View profile for gaurav (typingnoob2)
Official speed | 31.99 wpm (57.77 seconds elapsed during race) |
---|---|
Race Start | May 28, 2023 1:37:01pm UTC |
Race Finish | May 28, 2023 1:37:58pm UTC |
Outcome | No win (2 of 3) |
Accuracy | 95.0% |
Points | 11.19 |
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") |