which part of the input - process - output model is line 3 in the program below? strweight = input(\enter…

which part of the input - process - output model is line 3 in the program below? strweight = input(\enter your weight in pounds: \) # line 1 weight = float(strweight) # line 2 print (weight) # line 3 process planning output input
Answer
Brief Explanations:
In the input - process - output model, input is getting data from the user (line 1), process is transforming the data (line 2), and line 3 which uses the print function shows the result of the processed data to the user, which is output.
Answer:
C. output