Race Result Details |
Racer | @dudiellon (dudiellon) |
Race Number | 2017 |
Date | Thu, 7 Sep 2017 23:23:59 |
Universe | code |
Speed |
80 WPM
![]() |
Accuracy | 97.1% |
Rank | 1st place (out of 2) |
Opponents | andreaak00 (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
|