View Pit Stop page for race #1 by checkyourself — Ghost race
View profile for CheckYourself (checkyourself)
Official speed | 26.37 wpm (70.08 seconds elapsed during race) |
---|---|
Race Start | June 8, 2023 1:10:34pm UTC |
Race Finish | June 8, 2023 1:11:45pm UTC |
Outcome | No win (2 of 2) |
Opponents |
1. seane_cifer (39.49 wpm) |
Accuracy | 96.0% |
Points | 9.23 |
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") |