Question: I need help in python solving this practice problem: Subprogram writeNameAssn() Write My name is: Write This is assignment: End Subprogram Subprogram saveData(fileName,
I need help in python solving this practice problem:
Subprogram writeNameAssn() Write "My name is:" Write "This is assignment: " End Subprogram Subprogram saveData(fileName, s) Open fileName For Output As dataOut Write dataOut, s Close dataOut End Subprogram Subprogram getData(fn) Read all lines in fn into an array return the array End Subprogram Subprogram printData(a) Write each line in the array to the monitor Main Call writeNameAssn() Declare textIn as array Set fileName = "data.txt" Call saveData(fileName, "This is a test") set textIn = getData(fileName) Call printData(textIn) End Main Execute Main
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
