Record your races with a typeracer account:
Create Your Account- Save your race history and scores.
- Customize your profile and racecar.
- It’s free, why not?
Race Result Details |
Racer | Daniel (daniel_789) |
Race Number | 13 |
Date | Wed, 27 Mar 2024 15:08:11 +0000 |
Universe | code |
Speed |
46 WPM
![]() |
Accuracy | 97.0% |
Rank | 1st place (out of 2) |
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
|