Abhishek (phantom_kid1412)

Race #2

View Pit Stop page for race #2 by phantom_kid1412Ghost race

View profile for Abhishek (phantom_kid1412)

Official speed 41.69 wpm (44.33 seconds elapsed during race)
Race Start May 23, 2023 12:09:53am UTC
Race Finish May 23, 2023 12:10:37am UTC
Outcome Win (1 of 3)
Accuracy 96.0%
Points 14.59
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")