View Pit Stop page for race #7 by lucifer_2020 — Ghost race
View profile for LAKSHAY (lucifer_2020)
Official speed | 32.22 wpm (57.36 seconds elapsed during race) |
---|---|
Race Start | August 5, 2023 5:43:57pm UTC |
Race Finish | August 5, 2023 5:44:55pm UTC |
Outcome | Win (1 of 3) |
Accuracy | 95.0% |
Points | 11.28 |
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") |