Race Result Details |
Racer | Aidan who just types (aidnbsns) |
Race Number | 1 |
Date | Tue, 25 Jul 2023 5:12:42 |
Universe | code |
Speed |
44 WPM
![]() |
Accuracy | 92.9% |
Rank | 1st place (out of 2) |
Opponents | samsonite4002 (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
|