Race Result Details |
Racer | bentor TOA (gorengikan) |
Race Number | 3 |
Date | Wed, 15 Jan 2025 21:16:28 |
Universe | code |
Speed |
21 WPM
![]() |
Accuracy | 92.9% |
Rank | 5th place (out of 6) |
Opponents | huheho_1 (1st place) khew123 (4th place) semauracing (2nd place) widot123 (6th 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
|