My issue
can anyone help for this problem
My code
# Update your code below this line
def calculatorDisplay():
display="""Welocme to Calculator
Choose one operation:
1.Add
2.Subtract
3.Exit
"""
return(display)
if __name__ == '__main__':
print(calculatorDisplay())
Learning course: Python Projects
Problem Link: Display initial message in Python Projects
Hello @mohammedayesha ,
i hope you are doing well. So i am writing to explain you about this problem that, this is a simple display messege problem, here you need to write some given instructions to the console, for viewing purpose.
def calculatorDisplay():
display = """Welcome to Calculator
Choose one operation:
-
Add
-
Subtract
-
Exit
“”"
return(display)
if name == ‘main’:
print(calculatorDisplay())
That’s all it ask us to do. Thank You:) keep learning.