UrbanPro

Learn Python Training from the Best Tutors

  • Affordable fees
  • 1-1 or Group class
  • Flexible Timings
  • Verified Tutors

Search in

How do I do this in Python: for (I=0, j=n; I=0; I++, j--)?

Asked by Last Modified  

Follow 1
Answer

Please enter your answer

Enhance your skill set with quick courses in 'python', 'javascript' & 'sap ui5 / fiori / abap'

There may be a typo in the question. however this could be the corrected question..... for (I=0, j=n; I<n; I++, j--) >>> # for (I=0, j=n; I<n; I++, j--)>>> j=n=10 # we initialize 'n' and 'j'>>> # i<10 is the terminating condition, so we loop 'n' times. >>>...
read more

There may be a typo in the question. however this could be the corrected question.....

for (I=0, j=n; I<n; I++, j--)

 

>>> # for (I=0, j=n; I<n; I++, j--)
>>> j=n=10    # we initialize 'n' and 'j'
>>> # i<10 is the terminating condition, so we loop 'n' times. 
>>> for i in range(n):
              #in your case you are incrementing i by 1 repeatedly
              #and in the end i==n. j will be decremented by 1, n times.
              #In Python, we simulate the 'for' loop with range() and the the Range object will have a
              #sequence of int objects from 0 to 9. (ie.n-1). The 'for' construct will iterate thru the 
              #Range object according to its size and stop,after which it will execute the 'else' block. 
              #In Python, 'else' is an independent construct that can be used when ever a condition is checked.
              #'else' will execute when a condition is 'False'. We initialize 'n' and 'j' outside the 'for' construct.
              #The range() will construct a Range object of ints from 0 to n. All we need to do is decrement j.
              #On successful completion of the 'for', the 'else' will execute. Here, we add 1 to 'i' to make i==n.

              j-=1
else:
              i+=1
              print('i= ',i,'\n','j= ',j)


i= 10 
j= 0
>>>

read less
Comments

Related Questions

Which is better, PHP or Python? Why?
This question points to other question , What motive you want to learn or what you want to achive with them.
Issac
0 0
8
Is Python useful for learning?
Now days Python is very useful for data analytics and Development.
Venkata

Now ask question in any of the 1000+ Categories, and get Answers from Tutors and Trainers on UrbanPro.com

Ask a Question

Related Lessons

Two lists using Loops - Python Program 1
To generate a list of all possible combinations of two lists using loops, you can use nested loops to iterate through both lists and create a new list that contains all the combinations. list1 = list2...

Write your first Python program in 10 minutes
1. Download python from python official site search "python download" in google 2. Install in your machine 3. verify using : "python --version" command 4. Write first program using notepad create...

Steps of Execution of a Python Program
When we compile a Python program, the python compiler converts the Python source code into another code called byte code. Byte code is a fixed set of instructions that represent different types of operations....

Decorator Introduction
A decorator takes in a function, adds some functionality and returns it. Functions can be passed as arguments to another function like map, filter and reduce Function that take other functions as arguments...

A python program using the datetime module
Task : To write a program in Python to find out, in any given year, Friday the 13th dates i.e 13th day of a month which was a Friday. ...

Recommended Articles

Python is one of the most popular programming languages in the world. It is general-purpose, object oriented, high-level programming language used in a number of programming fields. Python is a great programming language to learn as it will introduce you to the world of programming. If you are from the technical background...

Read full article >

Applications engineering is a hot trend in the current IT market.  An applications engineer is responsible for designing and application of technology products relating to various aspects of computing. To accomplish this, he/she has to work collaboratively with the company’s manufacturing, marketing, sales, and customer...

Read full article >

Hadoop is a framework which has been developed for organizing and analysing big chunks of data for a business. Suppose you have a file larger than your system’s storage capacity and you can’t store it. Hadoop helps in storing bigger files than what could be stored on one particular server. You can therefore store very,...

Read full article >

Microsoft Excel is an electronic spreadsheet tool which is commonly used for financial and statistical data processing. It has been developed by Microsoft and forms a major component of the widely used Microsoft Office. From individual users to the top IT companies, Excel is used worldwide. Excel is one of the most important...

Read full article >

Looking for Python Training classes?

Learn from the Best Tutors on UrbanPro

Are you a Tutor or Training Institute?

Join UrbanPro Today to find students near you
X

Looking for Python Training Classes?

The best tutors for Python Training Classes are on UrbanPro

  • Select the best Tutor
  • Book & Attend a Free Demo
  • Pay and start Learning

Learn Python Training with the Best Tutors

The best Tutors for Python Training Classes are on UrbanPro

This website uses cookies

We use cookies to improve user experience. Choose what cookies you allow us to use. You can read more about our Cookie Policy in our Privacy Policy

Accept All
Decline All

UrbanPro.com is India's largest network of most trusted tutors and institutes. Over 55 lakh students rely on UrbanPro.com, to fulfill their learning requirements across 1,000+ categories. Using UrbanPro.com, parents, and students can compare multiple Tutors and Institutes and choose the one that best suits their requirements. More than 7.5 lakh verified Tutors and Institutes are helping millions of students every day and growing their tutoring business on UrbanPro.com. Whether you are looking for a tutor to learn mathematics, a German language trainer to brush up your German language skills or an institute to upgrade your IT skills, we have got the best selection of Tutors and Training Institutes for you. Read more