Skip to content Skip to sidebar Skip to footer
Showing posts with the label Range

Add Days To A Date In Python Using Loops, Ranges, And Slicing

I'm a beginner in python and I've recently learned how to do the basics of: functions, loop… Read more Add Days To A Date In Python Using Loops, Ranges, And Slicing

How To Fix The Error :'range' Object Is Not Callable In Python3.6

my code looks like: list_var = ['rh','temp','tl','Tt','DPD'… Read more How To Fix The Error :'range' Object Is Not Callable In Python3.6

Find If Item In List A In Range Of Items In Sublist Of List B

Let's say I have two lists. x = [2,12,33,40,500] y = ['1_4','9_11','38_50… Read more Find If Item In List A In Range Of Items In Sublist Of List B

For Loop Only Executes 1 Time, Though Given A Range Of 5

I have the following code: def input_scores(): scores = [] y = 1 for num in range(5): score = i… Read more For Loop Only Executes 1 Time, Though Given A Range Of 5

Why Do I Not Have To Define The Variable In A For Loop Using Range(), But I Do Have To In A While Loop In Python?

I have the following code using a for loop: total = 0 for num in range(101): total =… Read more Why Do I Not Have To Define The Variable In A For Loop Using Range(), But I Do Have To In A While Loop In Python?

Range With Floating Point Numbers And Negative Steps

I wrote the following for creating a range with negative floating point steps: def myRange(start, s… Read more Range With Floating Point Numbers And Negative Steps

How Is Irange() Any Different From Range() Or Xrange()?

I was going through Python Generators Wiki when I came across this RangeGenerator page which talks … Read more How Is Irange() Any Different From Range() Or Xrange()?

Find If Item In List A In Range Of Items In Sublist Of List B

Let's say I have two lists. x = [2,12,33,40,500] y = ['1_4','9_11','38_50… Read more Find If Item In List A In Range Of Items In Sublist Of List B

Use A Range As A Dictionary Key In Python, What Option Do I Have?

This is my first post and I'm quite new at programming, so I might not be able to convey my que… Read more Use A Range As A Dictionary Key In Python, What Option Do I Have?

Range Is Too Large Python

I'm trying to find the largest prime factor of the number x, Python gives me the error that the… Read more Range Is Too Large Python