View Pit Stop page for race #58 by ayraa — Ghost race
View profile for 🌹Save Gave🥀 (ayraa)
Official speed | 68.50 wpm (26.98 seconds elapsed during race) |
---|---|
Race Start | April 17, 2022 3:30:13am UTC |
Race Finish | April 17, 2022 3:30:40am UTC |
Outcome | Win (1 of 3) |
Accuracy | 99.0% |
Points | 23.98 |
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") |