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 | i_type_fast_with_good_posture (its_over_i_have_da_high_ground) |
Race Number | 2 |
Date | Fri, 16 Apr 2021 00:40:17 +0000 |
Universe | code |
Speed |
44 WPM
![]() |
Accuracy | 97.0% |
Rank | 2nd place (out of 3) |
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
|