About 474,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. 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 …

  3. 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 …

  4. 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 …

  5. 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 …

  6. Python Shipping Calculator Using IF Statements - Stack Overflow

    Feb 23, 2022 · 1 I am trying to make a Shipping calculator in python by using IF Statements. The application should calculate the total cost of an order including shipping. I am stuck at a point …

  7. 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.

  8. Age from birthdate in python - Stack Overflow

    How can I find an age in python from today's date and a persons birthdate? The birthdate is a from a DateField in a Django model.

  9. I want to make calculator using switch case statement in python

    Jul 22, 2019 · I am able to make calculator using the If and elsif statement but I am unable to make it with the switch case statement. I create basic for switch case but I stacked in how to …

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

    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 …