Question: Task 3 ( of 3 ) Develop a Python script, HW - W 2 D 2 _ Task 3 _ UCusername, to do the following:

Task 3(of 3)
Develop a Python script, HW-W2D2_Task3_UCusername, to do the following:
Create a 2d list of the Resistor Values:
R=[100200810560470360]
Using a loop, for each row in R, compute the resistance if the two resistors are combined
in series and save the results in a list. (RSeries=R1+R2)
Using a loop, for each row in R, compute the resistance if the two resistors are combined
in parallel and save the results in a list. Note: you can do this within the same loop you
used to calculate series resistances. (RParallel=11R1+1R2)
Output each pair of resistor values and their corresponding resistances. Format your print
statement so that each value is clearly labeled, and rounded to one place behind the
decimal point in the case of the parallel resistances you calculated.
Test Values:
R1=100;R2=200; Rseries =300; Rparallel =66.7
R1=810;R2=560; Rseries =1370; Rparallel =331.1
R1=470;R2=360; Rseries =830; Rparallel =203.9
 Task 3(of 3) Develop a Python script, HW-W2D2_Task3_UCusername, to do the

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!