Mohammed Magdi Rashad (mohamedmagdi_1)

Race #1

View Pit Stop page for race #1 by mohamedmagdi_1Ghost race

View profile for Mohammed Magdi Rashad (mohamedmagdi_1)

Official speed 10.80 wpm (171.11 seconds elapsed during race)
Race Start June 20, 2023 9:28:21pm UTC
Race Finish June 20, 2023 9:31:12pm UTC
Outcome No win (3 of 3)
Accuracy 95.0%
Points 3.78
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")