Ask your own question, for FREE!
Computer Science 15 Online
OpenStudy (anonymous):

Python programming: How would I plug in a range of numbers for one variable? I've tried it, doesn't work.

OpenStudy (anonymous):

There is no native "range" class inside of python that I know about. If you wanted to store a range of numbers it would just be a set of data with two elements (Bottom, Top); so you should be able to store it in a list with two elements: range1 = [0, 100] # for a range between 0 and 100 Another way to do this is to make a "range" class yourself with the range borders as variables stored as numbers.

Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!
Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!