About 346,000 results
Open links in new tab
  1. Calculate CRC32 correctly with Python - Stack Overflow

    Note that Python 3 guarantees that binascii.crc32 returns an unsigned value, and 2.6 and 2.7 should be guaranteeing a signed value, so platform differences shouldn't be affecting this.

  2. How to make a calculator in Python 3 - Stack Overflow

    Apr 26, 2021 · I need to create a calculator in Python that can perform all of these tasks. I have gotten this far with my code to do addition, subtraction, multiplication, and division. Can someone show me …

  3. python - 100 Days of Code - 37 - Love Calculator - Stack Overflow

    Jan 2, 2022 · Newbie here and I've taken a shot at a Love Calculator using the logic in my brain and here is what I got prior to some learning tweaks from the 100 Days of Code course. I'm stumped as …

  4. Calculator Loop in Python - Stack Overflow

    Apr 20, 2016 · Need to add a loop to my calculator by giving the user an option to restart the calculator by putting the code in a while loop with the condition that the input from user should be, 'y' or 'Y'. ...

  5. BMI Calculator in Python - Stack Overflow

    Think about how you can write one piece of code, which with parameters, can do both metric and imperial. That won't solve your problem, but it is one of the most essential skills in programming.

  6. python - Interactive calculator prints input instead of calculated ...

    Oct 15, 2017 · I want to code a calculator, but it goes wrong. This is my code: from time import sleep print ("Calculator v1.0 (Python 3.6.2)") ans = input ("Hello! Are you here for calculating? (y/...

  7. How can I run Python on my HP Prime graphing calculator?

    Sep 8, 2021 · For python coding i prefer to use another method: after the firmware update there is a new HP application when pressing 'Apps' you have now Python,clik on it and it will create a new main.py …

  8. Python: smarter way to calculate loan payments - Stack Overflow

    0 python code to calculate emi class EMI_CALCULATOR(object): # Data attributes # Helps to calculate EMI Loan_amount = None # assigning none values Month_Payment = None # assigning none …

  9. python - how do i make simple calculator process infinite as opposed …

    Jul 21, 2023 · 0 Hello this is my school mini project a pyhton calculator, i was hoping it could be reviewed professionaly and lines i would need to work on be pointed out. I also have been trying to …

  10. Making a simple calculator in Python and not sure how to do nothing …

    Sep 12, 2020 · This is similar to the indentation that you will expect to see in your Python code. Take two numbers input() returns a string, so convert to integers Ask for the operator input() to take a …