View Pit Stop page for race #86 by knight_oikos — Ghost race
View profile for Knight_Oikos (knight_oikos)
Official speed | 80.08 wpm (23.08 seconds elapsed during race) |
---|---|
Race Start | April 6, 2022 11:03:42pm UTC |
Race Finish | April 6, 2022 11:04:05pm UTC |
Outcome | No win (2 of 3) |
Accuracy | 96.0% |
Points | 28.03 |
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") |