Question: 1. Write assignment statements that perform the following operations with the variables a, b, and c. Print variable after each part. a. b. c. d.
1. Write assignment statements that perform the following operations with the variables a, b, and c. Print variable after each part. a. b. c. d. Adds 2 to a and assigns the result to b Multiplies b times 4 and assigns the result to a Divides a by 3.14 and assigns the result to b Subtracts 8 from b and assigns the result to a 2. Assume the variables result, w, x, y, and z are all integers, and that w-5, x -4, y-8, and z-2 What value will be stored in result after each of the following statements execute? Print variable after each part. a. result=x+y b. result z 2 c. result-y/x d. result y-z e. result wllz 3. Write a Python statement that assigns the sum of 10 and 14 to the variable total. Write a Python statement that subtracts the variable down_payment from the variable total and assigns the result to the variable due. 4. 5. Write a Python statement that multiplies the variable subtotal by 0.15 and assigns the result to the variable total. 6. What would the following display? a 5 c=3 result = a + b * c print(result) 7. What would the following display? num 99 num 5 print(num)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
