-3

i am new in python, how can i create the following for loops in python?
totalnumber of records = 3
IN_QUERY_LIMIT = 500
for (i = 0, i < totalnumberofrecords, i+=IN_QUERY_LIMIT) for (i = 0; i< IN_QUERY_LIMIT; ++i)

can any body help me please ?

0

1 Answer 1

0

you can do this way:

for i in range(0, totalnumberofrecords, IN_QUERY_LIMIT):
Sign up to request clarification or add additional context in comments.

Comments

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.