TASK: Run two different Python scripts asynchronously at the same time. Script A: 'import time; time.sleep(5); print("Script A Done")'. Script B: 'import time; time.sleep(5); print("Script B Done")'. You MUST poll both until they are finished using process_get_status, then write their combined final outputs to 'parallel_results.txt'. ---------------------------------------- Loading... ┌─── Python Source Code ───────────────────────────────────── │  1 | import time; time.sleep(5); print("Script A Done") └──────────────────────────────────────────────────────────── ┌─── Python Source Code ───────────────────────────────────── │  1 | import time; time.sleep(5); print("Script B Done") └──────────────────────────────────────────────────────────── [228409] Script A Done [228408] Script B Done -> Writing file: parallel_results.txt   CHANGES: parallel_results.txt  LINE OLD | LINE NEW -------------------------------------------------------------------------------------------------------------------------------------------- 1 - Script A Done  | 2 - Script B Done  | | 1 + Script A Output: Script A Done  | 2 + Script B Output: Script B Done  The two scripts have completed execution. Their combined outputs have been written to 'parallel_results.txt'.