Advertisements
Advertisements
Question
Observe the following program carefully, and identify the error:
def greet():
return("Good morning")
greet() = message #function call
Short Note
Solution
There is one error in the given program.
- The function 'greet()' returns the value “Good Morning” and this value is assigned to the variable "message". Therefore, it should follow the rule of assignment where the value to be assigned should be on RHS, and the variable ‘message’ should be on LHS. The correct statement in line 3 will be 'message = greet()'.
shaalaa.com
Flow of Execution
Is there an error in this question or solution?
APPEARS IN
RELATED QUESTIONS
XYZ store plans to give a festival discount to its customers. The store management has decided to give discount on the following criteria:
Shopping Amount | Discount Offered |
>=500 and <1000 | 5% |
>=1000 and <2000 | 8% |
>=2000 | 10% |
An additional discount of 5% is given to customers who are members of the store. Create a program using a user-defined function that accepts the shopping amount as a parameter and calculates the discount and net amount payable on the basis of the following conditions:
Net Payable Amount = Total Shopping Amount – Discount.