Tagged Questions

26
votes
11answers
2k views

Why is subtraction faster than addition in Python?

I was optimising some Python code, and tried the following experiment: import time start = time.clock() x = 0 for i in range(10000000): x += 1 end = time.clock() print '+=',end-start start = ...
2
votes
4answers
90 views

How to subtraction two list in python

I can't figure out how to make a function in python that can calculate this: List1=[3,5,6] List2=[3,7,2] and the result should be a new list that substracts List2 from List1, List3=[0,-2,4]! I know, ...
2
votes
2answers
119 views

Unwanted rounding when subtracting numpy arrays in Python

I'm running into an issue with python automatically rounding very small numbers (smaller than 1e-8) when subtracting an array from an single float. Take this example: import numpy as np float(1) ...
1
vote
1answer
94 views

Subtracting by Dictionary Values from Iterated Total in For Loop Python

Working in Python 2.7. I have a dictionary with team names as the keys and the values are contained in lists. The first value is the amount of runs the team scored, the second is runs allowed: NL = ...
1
vote
6answers
104 views

Subtract and add two lists without changing their order in Python

If I have the list [68,31,93,35,10] (all the numbers will be different) and the list [93,0,22,10,99,33,21,9] (again, all the numbers will be different, but may overlap the other list), I need to be ...
1
vote
1answer
160 views

why is python inconsistent when interpreting a subtraction when making a list?

I am making a small program and at some point from each row of a matrix I need to subtract the average of the row itself. Quite a standard renormalization procedure. Note in the code def ...
0
votes
2answers
133 views

Subtracting “variable[#]” with two digits in python?

I'm building a script in python to calculate the amount of time in between hours entered by a user Lets say for example I did the following time = input("Enter times:") and the user entered 3,11 to ...
0
votes
2answers
160 views

Python subtracting floats

I have the following code embeded in a class.Whenever I run distToPoint it gives the error 'unsupported operand type(s) for -: 'NoneType' and 'float'' I don't know why it's returning with NoneType and ...
0
votes
3answers
383 views

How can I force subtraction to be signed in Python?

You can skip to the bottom line if you don't care about the background: I have the following code in Python: ratio = (point.threshold - self.points[0].value) / (self.points[1].value - ...
-3
votes
3answers
664 views

All Possible combination for an HEX Value from a given set of chars

I am new to python and programming, I am looking for a code, or a sample code that can have a predefined set of hex values and that can find the 3 used values within to generate a certain value. ...