arrays - In python is there a range that has arguments that are two coordinates instead of integers? -


i want range go 1 coordinate in-built range function restricted integer arguments. possible?

numpy provides range-like function works floats. it's called arange:

>>> numpy.arange(0.1,0.5, 0.1) array([ 0.1,  0.2,  0.3,  0.4]) 

Comments

Popular posts from this blog

java - Oracle EBS .ClassNotFoundException: oracle.apps.fnd.formsClient.FormsLauncher.class ERROR -

c# - how to use buttonedit in devexpress gridcontrol -

nvd3.js - angularjs-nvd3-directives setting color in legend as well as in chart elements -