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 | Ricardo (richardgomes7d) |
Race Number | 39 |
Date | Thu, 24 Sep 2015 22:16:13 +0000 |
Universe | code |
Speed | 42 WPM Try to beat? |
Accuracy | 94.5% |
Rank | 6th place (out of 10) |
Opponents | arturojreal (4th place) dsat (1st place) erh4ua (5th place) iceryda4047 (7th place) sanzmaxxon (9th place) yamileth (2nd place) yarrpirate (3rd 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)
|