B1a) Answer the following questions. a. Debug the Code: There are EXACTLY FIVE (5) errors in the following Python code. Identify the line number and describe each error, then provide the corrected version of the entire code 1  def calculate_discount(price, discount_percent) 2  discount_amount = price * discount_percent / 100 3  final_price = price - discount_amount 4  return final price 5 6 items = ['Laptop', 'Mouse', 'Keyboard'] 7  prices = [2500, 45, 120, 80] 8 9 total_cost = 0 10 for i in range(len(items)): 11 discounted = calculate_discount(prices[i], 15) 12 print(f"Item: {items[i]} - Price: RM{discounted}") 13 total_cost = total_cost + discounted 14 print("Total: RM" + total_cost)论述题

题目图片

登录即可查看完整答案

我们收录了全球超50000道真实原题与详细解析,现在登录,立即获得答案。

更多留学生实用工具

加入我们,立即解锁 海量真题独家解析,让复习快人一步!