Race Result Details |
Racer | Eron Latif (zancatsan) |
Race Number | 1 |
Date | Mon, 15 Jan 2024 16:44:01 |
Universe | code |
Speed |
49 WPM
![]() |
Accuracy | 95.5% |
Rank | 1st place (out of 4) |
Opponents | guddubahiya (2nd place) |
Text typed:
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")
—
Python Standard Library Book
|