From 7be28270b5c3b8a3eb54daa40a47aefd40d11575 Mon Sep 17 00:00:00 2001 From: Naadiyaar Date: Wed, 31 May 2023 21:19:42 +0330 Subject: [PATCH] small text fix --- code/salesmansalary.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/salesmansalary.py b/code/salesmansalary.py index 60f67cf..9633f7e 100755 --- a/code/salesmansalary.py +++ b/code/salesmansalary.py @@ -2,7 +2,7 @@ basic_salary = 1500 bonus_rate = 200 commision_rate = 0.02 -numberofcamera = int(raw_input("Enter the number of inputs sold: ")) +numberofcamera = int(raw_input("Enter the number of cameras sold: ")) price = float(raw_input("Enter the total prices: ")) bonus = (bonus_rate * numberofcamera) commision = (commision_rate * numberofcamera * price)