View Pit Stop page for race #3 by gautamibuddha — Ghost race
View profile for Gautam (gautamibuddha)
Official speed | 33.34 wpm (55.43 seconds elapsed during race) |
---|---|
Race Start | April 9, 2018 11:39:10pm UTC |
Race Finish | April 9, 2018 11:40:05pm UTC |
Outcome | No win (4 of 4) |
Opponents |
1. xithes (41.53 wpm) 2. helpplz (36.92 wpm) 3. type_is_lyfe (35.55 wpm) |
Accuracy | 92.0% |
Points | 11.67 |
Text | #10002 (Length: 154 characters) 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") |