abhishek (a_anand_12)

Race #7

View Pit Stop page for race #7 by a_anand_12Ghost race

View profile for abhishek (a_anand_12)

Official speed 17.98 wpm (102.78 seconds elapsed during race)
Race Start November 30, 2022 2:09:27pm UTC
Race Finish November 30, 2022 2:11:10pm UTC
Outcome Win (1 of 3)
Accuracy 88.0%
Points 6.29
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")