Discover a wealth of knowledge and get your questions answered at IDNLearn.com. Get comprehensive answers to all your questions from our network of experienced experts.
Sagot :
Answer:
Explanation:
The following code is written in Python and does exactly what is requested by the question. It asks the user how many freebes they would like using an input method, saves that value to a variable called number_of_freebies. Then it multiplies that variable by the cost of each feebie (assuming its $2 each) to get the total cost. Finally, printing out the total cost.
number_of_freebies = input("how many freebies would you like to buy? ")
cost_of_freebie = 2
total_cost = number_of_freebies * cost_of_freebie
print(total_cost)
Thank you for using this platform to share and learn. Don't hesitate to keep asking and answering. We value every contribution you make. Find clear and concise answers at IDNLearn.com. Thanks for stopping by, and come back for more dependable solutions.