Calculator final project in Python The Next CEO of Stack OverflowPython calculator scriptSimple calculator for an interviewSimple python calculatorPython calculatorPython 3 - CalculatorPython BMI CalculatorSemi-simple calculatortkinter calculator college projectBasic calculator in PythonSimple Python calculator 5

Small nick on power cord from an electric alarm clock, and copper wiring exposed but intact

How can a day be of 24 hours?

How can the PCs determine if an item is a phylactery?

Direct Implications Between USA and UK in Event of No-Deal Brexit

Which acid/base does a strong base/acid react when added to a buffer solution?

Can Sri Krishna be called 'a person'?

Why did the Drakh emissary look so blurred in S04:E11 "Lines of Communication"?

Are British MPs missing the point, with these 'Indicative Votes'?

What steps are necessary to read a Modern SSD in Medieval Europe?

What does this strange code stamp on my passport mean?

Gauss' Posthumous Publications?

How to show a landlord what we have in savings?

Why was Sir Cadogan fired?

"Eavesdropping" vs "Listen in on"

Is it reasonable to ask other researchers to send me their previous grant applications?

Is there a rule of thumb for determining the amount one should accept for of a settlement offer?

pgfplots: How to draw a tangent graph below two others?

How seriously should I take size and weight limits of hand luggage?

Is it possible to create a QR code using text?

Could you use a laser beam as a modulated carrier wave for radio signal?

What is the difference between 'contrib' and 'non-free' packages repositories?

MT "will strike" & LXX "will watch carefully" (Gen 3:15)?

Is it correct to say moon starry nights?

Calculate the Mean mean of two numbers



Calculator final project in Python



The Next CEO of Stack OverflowPython calculator scriptSimple calculator for an interviewSimple python calculatorPython calculatorPython 3 - CalculatorPython BMI CalculatorSemi-simple calculatortkinter calculator college projectBasic calculator in PythonSimple Python calculator 5










5












$begingroup$


In my final project for my Python course, I am required to create a calculator program. I really need someone to look over my code and tell me if I have met all the requirements for this project.



Here are the requirements:




For the final project, you are to write a calculator program in Python
with the following characteristics:



  • It must be at least 50 lines of code excluding comments

  • It must have the following functions:+,-,*,/, SQRT, and work with decimal numbers.

  • It must be all text, no high resolution graphics

  • It must automatically copy the result to the operating system clipboard

  • It must work as a functional calculator (calculations can be entered over and over)

Please submit the source code only (.py), no object code (I will
compile on receipt)



NOTE:



  1. This assignment is graded on a pass/fail basis; there is no partial credit or resubmissions. Be sure you understand ALL of the
    requirements.


  2. Solutions that require the user install any software will NOT be accepted (in case you are not sure, this means NO Pyperclip.)


WARNING: All submissions will be checked for plagiarism using
SafeAssign or other plagiarism checker.




I completed the project, but because this is a pass/fail project I want to be 200% sure I have met every requirement. I am also open to any other feedback that would sharpen my Python skills.



Menu



def main():
#Menu
print("=======================")
print("Welcome to Calculator")
print("By: Tyler Harris")
print("=======================")
print("Menu: ")
print("[1] Calculator")
print("[2] Instructions")
print("[3] Exit")
print("=======================")
choice = input("Please select an option: ")
if choice == '1':
calculator()
elif choice == '2':
instructions()
main()
elif choice == '3':
print("Thank you for using Calculator.")
else:
print("Not an option, try again:")
main()


Calculator



def calculator():
result=0 #Resets calulator.
try:
while True:
print("Last Result: "+str(result))

#Number 1 input.
if result == 0:
num1= int(input("First Number: "))
if result != 0:
num1=result

#Operator input.
#Checks for input of special operators 'c', 'sqrt', and 'esc'.
operator=input("Opertaor: ").lower()
if operator == "c":
print("Calculator cleared")
calculator()
if operator=="sqrt":
result=(sqrt(num1))
print("Result: "+str(result))
continue
if operator=="esc":
main()
if operator.isdigit(): #Throw error if operator is a number.
raise Exception()

#Number 2 input.
num2= int(input("Second Number: "))
#Operator calls.
if operator=="+":
result=(add(num1,num2))
elif operator=="-":
result=(sub(num1,num2))
elif operator=="*":
result=(mult(num1,num2))
elif operator=="/":
result=(div(num1,num2))


#Copy result to System's clipboard and display the result.
copy2clip(str(result))
print("=======================")
print("Result: "+str(result))
print("copied to clipboard")
print("=======================")

#Catch any errors and reset calculator
except Exception:
print("=======================")
print("Error Please try again.")
calculator()
else:
calculator()


Operators



def add(num1,num2):
return num1 + num2
def sub(num1,num2):
return num1 - num2
def mult(num1,num2):
return num1 * num2
def div(num1,num2):
return num1 / num2
def sqrt(num1):
return (num1**(1/2.0))


Instructions



def instructions():
print("=======================")
print(format('Calculator','^25s'))
print("=======================")
print("Available operators")
print("+: Addition")
print("-: Subtraction")
print("*: Multiplication")
print("/: Division")
print("sqrt: Square Root")
print("c: Clear Calculator")
print("esc: Exit Calculator")
print("=======================")

def copy2clip(txt):
cmd='echo '+txt.strip()+'|clip'
return subprocess.check_call(cmd, shell=True)

if __name__=='__main__':
main()









share|improve this question











$endgroup$



migrated from stackoverflow.com yesterday


This question came from our site for professional and enthusiast programmers.













  • 1




    $begingroup$
    I would suggest you don't use raise Exception, instead provide a bit more info i.e. raise ValueError('Operator must be a digit').
    $endgroup$
    – David Waterworth
    yesterday











  • $begingroup$
    I'm afraid I don't have time for a full review, but one thing I did pick up on and wants checking is the requirement to "work with decimal numbers." It may be worth clarifying whether it's fine to use floating point numbers, or whether you're specifically expected to use the decimal library: docs.python.org/3.7/library/decimal.html
    $endgroup$
    – Josiah
    yesterday















5












$begingroup$


In my final project for my Python course, I am required to create a calculator program. I really need someone to look over my code and tell me if I have met all the requirements for this project.



Here are the requirements:




For the final project, you are to write a calculator program in Python
with the following characteristics:



  • It must be at least 50 lines of code excluding comments

  • It must have the following functions:+,-,*,/, SQRT, and work with decimal numbers.

  • It must be all text, no high resolution graphics

  • It must automatically copy the result to the operating system clipboard

  • It must work as a functional calculator (calculations can be entered over and over)

Please submit the source code only (.py), no object code (I will
compile on receipt)



NOTE:



  1. This assignment is graded on a pass/fail basis; there is no partial credit or resubmissions. Be sure you understand ALL of the
    requirements.


  2. Solutions that require the user install any software will NOT be accepted (in case you are not sure, this means NO Pyperclip.)


WARNING: All submissions will be checked for plagiarism using
SafeAssign or other plagiarism checker.




I completed the project, but because this is a pass/fail project I want to be 200% sure I have met every requirement. I am also open to any other feedback that would sharpen my Python skills.



Menu



def main():
#Menu
print("=======================")
print("Welcome to Calculator")
print("By: Tyler Harris")
print("=======================")
print("Menu: ")
print("[1] Calculator")
print("[2] Instructions")
print("[3] Exit")
print("=======================")
choice = input("Please select an option: ")
if choice == '1':
calculator()
elif choice == '2':
instructions()
main()
elif choice == '3':
print("Thank you for using Calculator.")
else:
print("Not an option, try again:")
main()


Calculator



def calculator():
result=0 #Resets calulator.
try:
while True:
print("Last Result: "+str(result))

#Number 1 input.
if result == 0:
num1= int(input("First Number: "))
if result != 0:
num1=result

#Operator input.
#Checks for input of special operators 'c', 'sqrt', and 'esc'.
operator=input("Opertaor: ").lower()
if operator == "c":
print("Calculator cleared")
calculator()
if operator=="sqrt":
result=(sqrt(num1))
print("Result: "+str(result))
continue
if operator=="esc":
main()
if operator.isdigit(): #Throw error if operator is a number.
raise Exception()

#Number 2 input.
num2= int(input("Second Number: "))
#Operator calls.
if operator=="+":
result=(add(num1,num2))
elif operator=="-":
result=(sub(num1,num2))
elif operator=="*":
result=(mult(num1,num2))
elif operator=="/":
result=(div(num1,num2))


#Copy result to System's clipboard and display the result.
copy2clip(str(result))
print("=======================")
print("Result: "+str(result))
print("copied to clipboard")
print("=======================")

#Catch any errors and reset calculator
except Exception:
print("=======================")
print("Error Please try again.")
calculator()
else:
calculator()


Operators



def add(num1,num2):
return num1 + num2
def sub(num1,num2):
return num1 - num2
def mult(num1,num2):
return num1 * num2
def div(num1,num2):
return num1 / num2
def sqrt(num1):
return (num1**(1/2.0))


Instructions



def instructions():
print("=======================")
print(format('Calculator','^25s'))
print("=======================")
print("Available operators")
print("+: Addition")
print("-: Subtraction")
print("*: Multiplication")
print("/: Division")
print("sqrt: Square Root")
print("c: Clear Calculator")
print("esc: Exit Calculator")
print("=======================")

def copy2clip(txt):
cmd='echo '+txt.strip()+'|clip'
return subprocess.check_call(cmd, shell=True)

if __name__=='__main__':
main()









share|improve this question











$endgroup$



migrated from stackoverflow.com yesterday


This question came from our site for professional and enthusiast programmers.













  • 1




    $begingroup$
    I would suggest you don't use raise Exception, instead provide a bit more info i.e. raise ValueError('Operator must be a digit').
    $endgroup$
    – David Waterworth
    yesterday











  • $begingroup$
    I'm afraid I don't have time for a full review, but one thing I did pick up on and wants checking is the requirement to "work with decimal numbers." It may be worth clarifying whether it's fine to use floating point numbers, or whether you're specifically expected to use the decimal library: docs.python.org/3.7/library/decimal.html
    $endgroup$
    – Josiah
    yesterday













5












5








5





$begingroup$


In my final project for my Python course, I am required to create a calculator program. I really need someone to look over my code and tell me if I have met all the requirements for this project.



Here are the requirements:




For the final project, you are to write a calculator program in Python
with the following characteristics:



  • It must be at least 50 lines of code excluding comments

  • It must have the following functions:+,-,*,/, SQRT, and work with decimal numbers.

  • It must be all text, no high resolution graphics

  • It must automatically copy the result to the operating system clipboard

  • It must work as a functional calculator (calculations can be entered over and over)

Please submit the source code only (.py), no object code (I will
compile on receipt)



NOTE:



  1. This assignment is graded on a pass/fail basis; there is no partial credit or resubmissions. Be sure you understand ALL of the
    requirements.


  2. Solutions that require the user install any software will NOT be accepted (in case you are not sure, this means NO Pyperclip.)


WARNING: All submissions will be checked for plagiarism using
SafeAssign or other plagiarism checker.




I completed the project, but because this is a pass/fail project I want to be 200% sure I have met every requirement. I am also open to any other feedback that would sharpen my Python skills.



Menu



def main():
#Menu
print("=======================")
print("Welcome to Calculator")
print("By: Tyler Harris")
print("=======================")
print("Menu: ")
print("[1] Calculator")
print("[2] Instructions")
print("[3] Exit")
print("=======================")
choice = input("Please select an option: ")
if choice == '1':
calculator()
elif choice == '2':
instructions()
main()
elif choice == '3':
print("Thank you for using Calculator.")
else:
print("Not an option, try again:")
main()


Calculator



def calculator():
result=0 #Resets calulator.
try:
while True:
print("Last Result: "+str(result))

#Number 1 input.
if result == 0:
num1= int(input("First Number: "))
if result != 0:
num1=result

#Operator input.
#Checks for input of special operators 'c', 'sqrt', and 'esc'.
operator=input("Opertaor: ").lower()
if operator == "c":
print("Calculator cleared")
calculator()
if operator=="sqrt":
result=(sqrt(num1))
print("Result: "+str(result))
continue
if operator=="esc":
main()
if operator.isdigit(): #Throw error if operator is a number.
raise Exception()

#Number 2 input.
num2= int(input("Second Number: "))
#Operator calls.
if operator=="+":
result=(add(num1,num2))
elif operator=="-":
result=(sub(num1,num2))
elif operator=="*":
result=(mult(num1,num2))
elif operator=="/":
result=(div(num1,num2))


#Copy result to System's clipboard and display the result.
copy2clip(str(result))
print("=======================")
print("Result: "+str(result))
print("copied to clipboard")
print("=======================")

#Catch any errors and reset calculator
except Exception:
print("=======================")
print("Error Please try again.")
calculator()
else:
calculator()


Operators



def add(num1,num2):
return num1 + num2
def sub(num1,num2):
return num1 - num2
def mult(num1,num2):
return num1 * num2
def div(num1,num2):
return num1 / num2
def sqrt(num1):
return (num1**(1/2.0))


Instructions



def instructions():
print("=======================")
print(format('Calculator','^25s'))
print("=======================")
print("Available operators")
print("+: Addition")
print("-: Subtraction")
print("*: Multiplication")
print("/: Division")
print("sqrt: Square Root")
print("c: Clear Calculator")
print("esc: Exit Calculator")
print("=======================")

def copy2clip(txt):
cmd='echo '+txt.strip()+'|clip'
return subprocess.check_call(cmd, shell=True)

if __name__=='__main__':
main()









share|improve this question











$endgroup$




In my final project for my Python course, I am required to create a calculator program. I really need someone to look over my code and tell me if I have met all the requirements for this project.



Here are the requirements:




For the final project, you are to write a calculator program in Python
with the following characteristics:



  • It must be at least 50 lines of code excluding comments

  • It must have the following functions:+,-,*,/, SQRT, and work with decimal numbers.

  • It must be all text, no high resolution graphics

  • It must automatically copy the result to the operating system clipboard

  • It must work as a functional calculator (calculations can be entered over and over)

Please submit the source code only (.py), no object code (I will
compile on receipt)



NOTE:



  1. This assignment is graded on a pass/fail basis; there is no partial credit or resubmissions. Be sure you understand ALL of the
    requirements.


  2. Solutions that require the user install any software will NOT be accepted (in case you are not sure, this means NO Pyperclip.)


WARNING: All submissions will be checked for plagiarism using
SafeAssign or other plagiarism checker.




I completed the project, but because this is a pass/fail project I want to be 200% sure I have met every requirement. I am also open to any other feedback that would sharpen my Python skills.



Menu



def main():
#Menu
print("=======================")
print("Welcome to Calculator")
print("By: Tyler Harris")
print("=======================")
print("Menu: ")
print("[1] Calculator")
print("[2] Instructions")
print("[3] Exit")
print("=======================")
choice = input("Please select an option: ")
if choice == '1':
calculator()
elif choice == '2':
instructions()
main()
elif choice == '3':
print("Thank you for using Calculator.")
else:
print("Not an option, try again:")
main()


Calculator



def calculator():
result=0 #Resets calulator.
try:
while True:
print("Last Result: "+str(result))

#Number 1 input.
if result == 0:
num1= int(input("First Number: "))
if result != 0:
num1=result

#Operator input.
#Checks for input of special operators 'c', 'sqrt', and 'esc'.
operator=input("Opertaor: ").lower()
if operator == "c":
print("Calculator cleared")
calculator()
if operator=="sqrt":
result=(sqrt(num1))
print("Result: "+str(result))
continue
if operator=="esc":
main()
if operator.isdigit(): #Throw error if operator is a number.
raise Exception()

#Number 2 input.
num2= int(input("Second Number: "))
#Operator calls.
if operator=="+":
result=(add(num1,num2))
elif operator=="-":
result=(sub(num1,num2))
elif operator=="*":
result=(mult(num1,num2))
elif operator=="/":
result=(div(num1,num2))


#Copy result to System's clipboard and display the result.
copy2clip(str(result))
print("=======================")
print("Result: "+str(result))
print("copied to clipboard")
print("=======================")

#Catch any errors and reset calculator
except Exception:
print("=======================")
print("Error Please try again.")
calculator()
else:
calculator()


Operators



def add(num1,num2):
return num1 + num2
def sub(num1,num2):
return num1 - num2
def mult(num1,num2):
return num1 * num2
def div(num1,num2):
return num1 / num2
def sqrt(num1):
return (num1**(1/2.0))


Instructions



def instructions():
print("=======================")
print(format('Calculator','^25s'))
print("=======================")
print("Available operators")
print("+: Addition")
print("-: Subtraction")
print("*: Multiplication")
print("/: Division")
print("sqrt: Square Root")
print("c: Clear Calculator")
print("esc: Exit Calculator")
print("=======================")

def copy2clip(txt):
cmd='echo '+txt.strip()+'|clip'
return subprocess.check_call(cmd, shell=True)

if __name__=='__main__':
main()






python python-3.x homework calculator






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited yesterday









200_success

131k17156420




131k17156420










asked 2 days ago







user3590710











migrated from stackoverflow.com yesterday


This question came from our site for professional and enthusiast programmers.









migrated from stackoverflow.com yesterday


This question came from our site for professional and enthusiast programmers.









  • 1




    $begingroup$
    I would suggest you don't use raise Exception, instead provide a bit more info i.e. raise ValueError('Operator must be a digit').
    $endgroup$
    – David Waterworth
    yesterday











  • $begingroup$
    I'm afraid I don't have time for a full review, but one thing I did pick up on and wants checking is the requirement to "work with decimal numbers." It may be worth clarifying whether it's fine to use floating point numbers, or whether you're specifically expected to use the decimal library: docs.python.org/3.7/library/decimal.html
    $endgroup$
    – Josiah
    yesterday












  • 1




    $begingroup$
    I would suggest you don't use raise Exception, instead provide a bit more info i.e. raise ValueError('Operator must be a digit').
    $endgroup$
    – David Waterworth
    yesterday











  • $begingroup$
    I'm afraid I don't have time for a full review, but one thing I did pick up on and wants checking is the requirement to "work with decimal numbers." It may be worth clarifying whether it's fine to use floating point numbers, or whether you're specifically expected to use the decimal library: docs.python.org/3.7/library/decimal.html
    $endgroup$
    – Josiah
    yesterday







1




1




$begingroup$
I would suggest you don't use raise Exception, instead provide a bit more info i.e. raise ValueError('Operator must be a digit').
$endgroup$
– David Waterworth
yesterday





$begingroup$
I would suggest you don't use raise Exception, instead provide a bit more info i.e. raise ValueError('Operator must be a digit').
$endgroup$
– David Waterworth
yesterday













$begingroup$
I'm afraid I don't have time for a full review, but one thing I did pick up on and wants checking is the requirement to "work with decimal numbers." It may be worth clarifying whether it's fine to use floating point numbers, or whether you're specifically expected to use the decimal library: docs.python.org/3.7/library/decimal.html
$endgroup$
– Josiah
yesterday




$begingroup$
I'm afraid I don't have time for a full review, but one thing I did pick up on and wants checking is the requirement to "work with decimal numbers." It may be worth clarifying whether it's fine to use floating point numbers, or whether you're specifically expected to use the decimal library: docs.python.org/3.7/library/decimal.html
$endgroup$
– Josiah
yesterday










2 Answers
2






active

oldest

votes


















7












$begingroup$

You are using function calls as if they were goto labels. That is a huge sin: it makes your program spaghetti code. If you want a loop, then write a loop. For example, main() should look like:



def main():
while True:
#Menu
print("=======================")
print("Welcome to Calculator")
print("By: Tyler Harris")
print("=======================")
print("Menu: ")
print("[1] Calculator")
print("[2] Instructions")
print("[3] Exit")
print("=======================")
choice = input("Please select an option: ")
if choice == '1':
calculator()
elif choice == '2':
instructions()
elif choice == '3':
print("Thank you for using Calculator.")
break
else:
print("Not an option, try again:")





share|improve this answer









$endgroup$




















    6












    $begingroup$

     elif choice == '2':
    instructions()
    main()


    Ummm, that's probably not exactly what you want.
    Python lacks a goto statement, so the usual idiom would be to wrap the whole thing in some sort of while loop, perhaps while True.
    Consider an input sequence of "2 2 2 2 2", or "z z z z z".
    You'll wind up pushing main onto the call stack again, and again, and again....



    Your locals never go out of scope,
    so their ref count never decrements and they won't be deallocated and tidied up.



    tl;dr: leaking stack frames is Bad, don't do it.



     print("Last Result: "+str(result))


    Usual idiom would be print('Last Result:', result), but no harm done.



     num1 = int(input("First Number: "))


    The requirements seemed pretty clear about "...must work with decimal numbers."
    You chose to invoke int() rather than float().



     if result != 0: 
    num1 = result


    I can't imagine how that corresponds to The Right Thing.
    If you want a sentinel, None would be much better than 0,
    just consider a sequence like 2 + 1 = - 3 = (which yields zero).
    Perhaps there's a reason for assigning the accumulator to num1, but I'm not seeing it.
    It appears you have discarded the user input.



     operator = input("Opertaor: ").lower()


    Typo.



     calculator()


    Same criticism as above. Python lacks goto, and you're leaking stack frames here.



     if operator == "sqrt":
    result = (sqrt(num1))
    print("Result: "+str(result))
    continue


    It is apparent that I'm not understanding why you are using the result accumulator versus the num1 user input.
    On most calculators, repeated clicking of the √ key would yield repeated assignment of result = sqrt(result).
    I'm a little concerned about num1 versus result confusion.



     if operator=="esc":
    main()


    Same remark about leaking stack frames.
    A return statement would be usual, here.



     if operator.isdigit(): 


    This seems a bit restrictive.
    Better to unconditionally raise an "unrecognized operator" error.



     num2 = int(input("Second Number: "))


    Same criticism as above, the "decimal" instructions are pretty clear about calling float().



     result = (add(num1,num2))


    All four of these assignments seem pretty weird,
    as for a typical calculator we'd be accumulating result = add(result, num2).
    This is a consequence of the num1 assignment above.
    Also, please discard the (extraneous parentheses).



    def sqrt(num1):
    return (num1**(1/2.0))


    This works fine, but do consider the usual idiom of simply calling math.sqrt().






    share|improve this answer











    $endgroup$








    • 1




      $begingroup$
      Just to elaborate on the first point of why it is bad to keep calling main() - basically each time you call a method, you are 'entering' that method. But you never exit the method - you just keep going deeper into the wormhole with each main() call. As JH is saying, each time you call a method you are putting more data onto the stack, but since the methods never are allowed to exit, the data is never freed, which eventually means you run out of space and the application will stop working.
      $endgroup$
      – fabspro
      yesterday











    Your Answer





    StackExchange.ifUsing("editor", function ()
    return StackExchange.using("mathjaxEditing", function ()
    StackExchange.MarkdownEditor.creationCallbacks.add(function (editor, postfix)
    StackExchange.mathjaxEditing.prepareWmdForMathJax(editor, postfix, [["\$", "\$"]]);
    );
    );
    , "mathjax-editing");

    StackExchange.ifUsing("editor", function ()
    StackExchange.using("externalEditor", function ()
    StackExchange.using("snippets", function ()
    StackExchange.snippets.init();
    );
    );
    , "code-snippets");

    StackExchange.ready(function()
    var channelOptions =
    tags: "".split(" "),
    id: "196"
    ;
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function()
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled)
    StackExchange.using("snippets", function()
    createEditor();
    );

    else
    createEditor();

    );

    function createEditor()
    StackExchange.prepareEditor(
    heartbeatType: 'answer',
    autoActivateHeartbeat: false,
    convertImagesToLinks: false,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: null,
    bindNavPrevention: true,
    postfix: "",
    imageUploader:
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    ,
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    );



    );













    draft saved

    draft discarded


















    StackExchange.ready(
    function ()
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fcodereview.stackexchange.com%2fquestions%2f216557%2fcalculator-final-project-in-python%23new-answer', 'question_page');

    );

    Post as a guest















    Required, but never shown
























    2 Answers
    2






    active

    oldest

    votes








    2 Answers
    2






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    7












    $begingroup$

    You are using function calls as if they were goto labels. That is a huge sin: it makes your program spaghetti code. If you want a loop, then write a loop. For example, main() should look like:



    def main():
    while True:
    #Menu
    print("=======================")
    print("Welcome to Calculator")
    print("By: Tyler Harris")
    print("=======================")
    print("Menu: ")
    print("[1] Calculator")
    print("[2] Instructions")
    print("[3] Exit")
    print("=======================")
    choice = input("Please select an option: ")
    if choice == '1':
    calculator()
    elif choice == '2':
    instructions()
    elif choice == '3':
    print("Thank you for using Calculator.")
    break
    else:
    print("Not an option, try again:")





    share|improve this answer









    $endgroup$

















      7












      $begingroup$

      You are using function calls as if they were goto labels. That is a huge sin: it makes your program spaghetti code. If you want a loop, then write a loop. For example, main() should look like:



      def main():
      while True:
      #Menu
      print("=======================")
      print("Welcome to Calculator")
      print("By: Tyler Harris")
      print("=======================")
      print("Menu: ")
      print("[1] Calculator")
      print("[2] Instructions")
      print("[3] Exit")
      print("=======================")
      choice = input("Please select an option: ")
      if choice == '1':
      calculator()
      elif choice == '2':
      instructions()
      elif choice == '3':
      print("Thank you for using Calculator.")
      break
      else:
      print("Not an option, try again:")





      share|improve this answer









      $endgroup$















        7












        7








        7





        $begingroup$

        You are using function calls as if they were goto labels. That is a huge sin: it makes your program spaghetti code. If you want a loop, then write a loop. For example, main() should look like:



        def main():
        while True:
        #Menu
        print("=======================")
        print("Welcome to Calculator")
        print("By: Tyler Harris")
        print("=======================")
        print("Menu: ")
        print("[1] Calculator")
        print("[2] Instructions")
        print("[3] Exit")
        print("=======================")
        choice = input("Please select an option: ")
        if choice == '1':
        calculator()
        elif choice == '2':
        instructions()
        elif choice == '3':
        print("Thank you for using Calculator.")
        break
        else:
        print("Not an option, try again:")





        share|improve this answer









        $endgroup$



        You are using function calls as if they were goto labels. That is a huge sin: it makes your program spaghetti code. If you want a loop, then write a loop. For example, main() should look like:



        def main():
        while True:
        #Menu
        print("=======================")
        print("Welcome to Calculator")
        print("By: Tyler Harris")
        print("=======================")
        print("Menu: ")
        print("[1] Calculator")
        print("[2] Instructions")
        print("[3] Exit")
        print("=======================")
        choice = input("Please select an option: ")
        if choice == '1':
        calculator()
        elif choice == '2':
        instructions()
        elif choice == '3':
        print("Thank you for using Calculator.")
        break
        else:
        print("Not an option, try again:")






        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered yesterday









        200_success200_success

        131k17156420




        131k17156420























            6












            $begingroup$

             elif choice == '2':
            instructions()
            main()


            Ummm, that's probably not exactly what you want.
            Python lacks a goto statement, so the usual idiom would be to wrap the whole thing in some sort of while loop, perhaps while True.
            Consider an input sequence of "2 2 2 2 2", or "z z z z z".
            You'll wind up pushing main onto the call stack again, and again, and again....



            Your locals never go out of scope,
            so their ref count never decrements and they won't be deallocated and tidied up.



            tl;dr: leaking stack frames is Bad, don't do it.



             print("Last Result: "+str(result))


            Usual idiom would be print('Last Result:', result), but no harm done.



             num1 = int(input("First Number: "))


            The requirements seemed pretty clear about "...must work with decimal numbers."
            You chose to invoke int() rather than float().



             if result != 0: 
            num1 = result


            I can't imagine how that corresponds to The Right Thing.
            If you want a sentinel, None would be much better than 0,
            just consider a sequence like 2 + 1 = - 3 = (which yields zero).
            Perhaps there's a reason for assigning the accumulator to num1, but I'm not seeing it.
            It appears you have discarded the user input.



             operator = input("Opertaor: ").lower()


            Typo.



             calculator()


            Same criticism as above. Python lacks goto, and you're leaking stack frames here.



             if operator == "sqrt":
            result = (sqrt(num1))
            print("Result: "+str(result))
            continue


            It is apparent that I'm not understanding why you are using the result accumulator versus the num1 user input.
            On most calculators, repeated clicking of the √ key would yield repeated assignment of result = sqrt(result).
            I'm a little concerned about num1 versus result confusion.



             if operator=="esc":
            main()


            Same remark about leaking stack frames.
            A return statement would be usual, here.



             if operator.isdigit(): 


            This seems a bit restrictive.
            Better to unconditionally raise an "unrecognized operator" error.



             num2 = int(input("Second Number: "))


            Same criticism as above, the "decimal" instructions are pretty clear about calling float().



             result = (add(num1,num2))


            All four of these assignments seem pretty weird,
            as for a typical calculator we'd be accumulating result = add(result, num2).
            This is a consequence of the num1 assignment above.
            Also, please discard the (extraneous parentheses).



            def sqrt(num1):
            return (num1**(1/2.0))


            This works fine, but do consider the usual idiom of simply calling math.sqrt().






            share|improve this answer











            $endgroup$








            • 1




              $begingroup$
              Just to elaborate on the first point of why it is bad to keep calling main() - basically each time you call a method, you are 'entering' that method. But you never exit the method - you just keep going deeper into the wormhole with each main() call. As JH is saying, each time you call a method you are putting more data onto the stack, but since the methods never are allowed to exit, the data is never freed, which eventually means you run out of space and the application will stop working.
              $endgroup$
              – fabspro
              yesterday















            6












            $begingroup$

             elif choice == '2':
            instructions()
            main()


            Ummm, that's probably not exactly what you want.
            Python lacks a goto statement, so the usual idiom would be to wrap the whole thing in some sort of while loop, perhaps while True.
            Consider an input sequence of "2 2 2 2 2", or "z z z z z".
            You'll wind up pushing main onto the call stack again, and again, and again....



            Your locals never go out of scope,
            so their ref count never decrements and they won't be deallocated and tidied up.



            tl;dr: leaking stack frames is Bad, don't do it.



             print("Last Result: "+str(result))


            Usual idiom would be print('Last Result:', result), but no harm done.



             num1 = int(input("First Number: "))


            The requirements seemed pretty clear about "...must work with decimal numbers."
            You chose to invoke int() rather than float().



             if result != 0: 
            num1 = result


            I can't imagine how that corresponds to The Right Thing.
            If you want a sentinel, None would be much better than 0,
            just consider a sequence like 2 + 1 = - 3 = (which yields zero).
            Perhaps there's a reason for assigning the accumulator to num1, but I'm not seeing it.
            It appears you have discarded the user input.



             operator = input("Opertaor: ").lower()


            Typo.



             calculator()


            Same criticism as above. Python lacks goto, and you're leaking stack frames here.



             if operator == "sqrt":
            result = (sqrt(num1))
            print("Result: "+str(result))
            continue


            It is apparent that I'm not understanding why you are using the result accumulator versus the num1 user input.
            On most calculators, repeated clicking of the √ key would yield repeated assignment of result = sqrt(result).
            I'm a little concerned about num1 versus result confusion.



             if operator=="esc":
            main()


            Same remark about leaking stack frames.
            A return statement would be usual, here.



             if operator.isdigit(): 


            This seems a bit restrictive.
            Better to unconditionally raise an "unrecognized operator" error.



             num2 = int(input("Second Number: "))


            Same criticism as above, the "decimal" instructions are pretty clear about calling float().



             result = (add(num1,num2))


            All four of these assignments seem pretty weird,
            as for a typical calculator we'd be accumulating result = add(result, num2).
            This is a consequence of the num1 assignment above.
            Also, please discard the (extraneous parentheses).



            def sqrt(num1):
            return (num1**(1/2.0))


            This works fine, but do consider the usual idiom of simply calling math.sqrt().






            share|improve this answer











            $endgroup$








            • 1




              $begingroup$
              Just to elaborate on the first point of why it is bad to keep calling main() - basically each time you call a method, you are 'entering' that method. But you never exit the method - you just keep going deeper into the wormhole with each main() call. As JH is saying, each time you call a method you are putting more data onto the stack, but since the methods never are allowed to exit, the data is never freed, which eventually means you run out of space and the application will stop working.
              $endgroup$
              – fabspro
              yesterday













            6












            6








            6





            $begingroup$

             elif choice == '2':
            instructions()
            main()


            Ummm, that's probably not exactly what you want.
            Python lacks a goto statement, so the usual idiom would be to wrap the whole thing in some sort of while loop, perhaps while True.
            Consider an input sequence of "2 2 2 2 2", or "z z z z z".
            You'll wind up pushing main onto the call stack again, and again, and again....



            Your locals never go out of scope,
            so their ref count never decrements and they won't be deallocated and tidied up.



            tl;dr: leaking stack frames is Bad, don't do it.



             print("Last Result: "+str(result))


            Usual idiom would be print('Last Result:', result), but no harm done.



             num1 = int(input("First Number: "))


            The requirements seemed pretty clear about "...must work with decimal numbers."
            You chose to invoke int() rather than float().



             if result != 0: 
            num1 = result


            I can't imagine how that corresponds to The Right Thing.
            If you want a sentinel, None would be much better than 0,
            just consider a sequence like 2 + 1 = - 3 = (which yields zero).
            Perhaps there's a reason for assigning the accumulator to num1, but I'm not seeing it.
            It appears you have discarded the user input.



             operator = input("Opertaor: ").lower()


            Typo.



             calculator()


            Same criticism as above. Python lacks goto, and you're leaking stack frames here.



             if operator == "sqrt":
            result = (sqrt(num1))
            print("Result: "+str(result))
            continue


            It is apparent that I'm not understanding why you are using the result accumulator versus the num1 user input.
            On most calculators, repeated clicking of the √ key would yield repeated assignment of result = sqrt(result).
            I'm a little concerned about num1 versus result confusion.



             if operator=="esc":
            main()


            Same remark about leaking stack frames.
            A return statement would be usual, here.



             if operator.isdigit(): 


            This seems a bit restrictive.
            Better to unconditionally raise an "unrecognized operator" error.



             num2 = int(input("Second Number: "))


            Same criticism as above, the "decimal" instructions are pretty clear about calling float().



             result = (add(num1,num2))


            All four of these assignments seem pretty weird,
            as for a typical calculator we'd be accumulating result = add(result, num2).
            This is a consequence of the num1 assignment above.
            Also, please discard the (extraneous parentheses).



            def sqrt(num1):
            return (num1**(1/2.0))


            This works fine, but do consider the usual idiom of simply calling math.sqrt().






            share|improve this answer











            $endgroup$



             elif choice == '2':
            instructions()
            main()


            Ummm, that's probably not exactly what you want.
            Python lacks a goto statement, so the usual idiom would be to wrap the whole thing in some sort of while loop, perhaps while True.
            Consider an input sequence of "2 2 2 2 2", or "z z z z z".
            You'll wind up pushing main onto the call stack again, and again, and again....



            Your locals never go out of scope,
            so their ref count never decrements and they won't be deallocated and tidied up.



            tl;dr: leaking stack frames is Bad, don't do it.



             print("Last Result: "+str(result))


            Usual idiom would be print('Last Result:', result), but no harm done.



             num1 = int(input("First Number: "))


            The requirements seemed pretty clear about "...must work with decimal numbers."
            You chose to invoke int() rather than float().



             if result != 0: 
            num1 = result


            I can't imagine how that corresponds to The Right Thing.
            If you want a sentinel, None would be much better than 0,
            just consider a sequence like 2 + 1 = - 3 = (which yields zero).
            Perhaps there's a reason for assigning the accumulator to num1, but I'm not seeing it.
            It appears you have discarded the user input.



             operator = input("Opertaor: ").lower()


            Typo.



             calculator()


            Same criticism as above. Python lacks goto, and you're leaking stack frames here.



             if operator == "sqrt":
            result = (sqrt(num1))
            print("Result: "+str(result))
            continue


            It is apparent that I'm not understanding why you are using the result accumulator versus the num1 user input.
            On most calculators, repeated clicking of the √ key would yield repeated assignment of result = sqrt(result).
            I'm a little concerned about num1 versus result confusion.



             if operator=="esc":
            main()


            Same remark about leaking stack frames.
            A return statement would be usual, here.



             if operator.isdigit(): 


            This seems a bit restrictive.
            Better to unconditionally raise an "unrecognized operator" error.



             num2 = int(input("Second Number: "))


            Same criticism as above, the "decimal" instructions are pretty clear about calling float().



             result = (add(num1,num2))


            All four of these assignments seem pretty weird,
            as for a typical calculator we'd be accumulating result = add(result, num2).
            This is a consequence of the num1 assignment above.
            Also, please discard the (extraneous parentheses).



            def sqrt(num1):
            return (num1**(1/2.0))


            This works fine, but do consider the usual idiom of simply calling math.sqrt().







            share|improve this answer














            share|improve this answer



            share|improve this answer








            edited yesterday

























            answered yesterday









            J_HJ_H

            4,692137




            4,692137







            • 1




              $begingroup$
              Just to elaborate on the first point of why it is bad to keep calling main() - basically each time you call a method, you are 'entering' that method. But you never exit the method - you just keep going deeper into the wormhole with each main() call. As JH is saying, each time you call a method you are putting more data onto the stack, but since the methods never are allowed to exit, the data is never freed, which eventually means you run out of space and the application will stop working.
              $endgroup$
              – fabspro
              yesterday












            • 1




              $begingroup$
              Just to elaborate on the first point of why it is bad to keep calling main() - basically each time you call a method, you are 'entering' that method. But you never exit the method - you just keep going deeper into the wormhole with each main() call. As JH is saying, each time you call a method you are putting more data onto the stack, but since the methods never are allowed to exit, the data is never freed, which eventually means you run out of space and the application will stop working.
              $endgroup$
              – fabspro
              yesterday







            1




            1




            $begingroup$
            Just to elaborate on the first point of why it is bad to keep calling main() - basically each time you call a method, you are 'entering' that method. But you never exit the method - you just keep going deeper into the wormhole with each main() call. As JH is saying, each time you call a method you are putting more data onto the stack, but since the methods never are allowed to exit, the data is never freed, which eventually means you run out of space and the application will stop working.
            $endgroup$
            – fabspro
            yesterday




            $begingroup$
            Just to elaborate on the first point of why it is bad to keep calling main() - basically each time you call a method, you are 'entering' that method. But you never exit the method - you just keep going deeper into the wormhole with each main() call. As JH is saying, each time you call a method you are putting more data onto the stack, but since the methods never are allowed to exit, the data is never freed, which eventually means you run out of space and the application will stop working.
            $endgroup$
            – fabspro
            yesterday

















            draft saved

            draft discarded
















































            Thanks for contributing an answer to Code Review Stack Exchange!


            • Please be sure to answer the question. Provide details and share your research!

            But avoid


            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.

            Use MathJax to format equations. MathJax reference.


            To learn more, see our tips on writing great answers.




            draft saved


            draft discarded














            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fcodereview.stackexchange.com%2fquestions%2f216557%2fcalculator-final-project-in-python%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            Popular posts from this blog

            Wikipedia:Vital articles Мазмуну Biography - Өмүр баян Philosophy and psychology - Философия жана психология Religion - Дин Social sciences - Коомдук илимдер Language and literature - Тил жана адабият Science - Илим Technology - Технология Arts and recreation - Искусство жана эс алуу History and geography - Тарых жана география Навигация менюсу

            Bruxelas-Capital Índice Historia | Composición | Situación lingüística | Clima | Cidades irmandadas | Notas | Véxase tamén | Menú de navegacióneO uso das linguas en Bruxelas e a situación do neerlandés"Rexión de Bruxelas Capital"o orixinalSitio da rexiónPáxina de Bruselas no sitio da Oficina de Promoción Turística de Valonia e BruxelasMapa Interactivo da Rexión de Bruxelas-CapitaleeWorldCat332144929079854441105155190212ID28008674080552-90000 0001 0666 3698n94104302ID540940339365017018237

            What should I write in an apology letter, since I have decided not to join a company after accepting an offer letterShould I keep looking after accepting a job offer?What should I do when I've been verbally told I would get an offer letter, but still haven't gotten one after 4 weeks?Do I accept an offer from a company that I am not likely to join?New job hasn't confirmed starting date and I want to give current employer as much notice as possibleHow should I address my manager in my resignation letter?HR delayed background verification, now jobless as resignedNo email communication after accepting a formal written offer. How should I phrase the call?What should I do if after receiving a verbal offer letter I am informed that my written job offer is put on hold due to some internal issues?Should I inform the current employer that I am about to resign within 1-2 weeks since I have signed the offer letter and waiting for visa?What company will do, if I send their offer letter to another company