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 | Pirate (yarrpirate) |
Race Number | 9 |
Date | Tue, 22 Sep 2015 22:20:34 +0000 |
Universe | code |
Speed | 39 WPM Try to beat? |
Accuracy | 84.2% |
Rank | 5th place (out of 2) |
Opponents | arturojreal (3rd place) dsat (1st place) gersch (6th place) iceryda4047 (4th place) sanzmaxxon (7th place) yamileth (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
(software)
by Fredrik Lundh
(see stats)
|