Question: PYTHON QUESTION 5 Implement the following: Given: snack1 = Chocolate snack2 = Cookie price 1=5.99 price 2=6 Use the given variables above, and print two
PYTHON
QUESTION 5 Implement the following: Given: snack1 = "Chocolate" snack2 = "Cookie" price 1=5.99 price 2=6 Use the given variables above, and print two f-string statements to display the following according to the rules below: 1) snack1 prefixed with "Monday: " and snack2 prefixed with "Wednesday: ". 2) Price prefixed with "Cost: \( \$ " \)quot; 3) snack1 has 23 characters of space and snack2 has 20 characters of space. 4) Price is always displayed with two decimal places. Just make sure to precisely match the output format below. Write your code in the ANSWER area provided below (must include comments if using code is not covered in the course). Example Output 0000000012345678901234567890123 this line is used for indication. No need to print it in your code Monday: Chocolate Cost: $5.99 0000000000012345678901234567890\#This line is used for indication. No need to print it in your code Wednesday: Cookie Cost: $5.00
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
