code
stringlengths
3
157
text
stringlengths
6
207
i -= 1
Subtract one from i inside the loop
i -= 1
Subtract one from the variable i inside the loop
i -= 1
Inside loop i -= 1
i -= 1
Inside loop i = i - 1
A=0
Assign zero to a variable A
A=0
Assign zero to the variable A
A=0
Assign zero to the variable A
A=0
Put zero to the variable A
B=1
Assign one to the variable B
B=1
Assign one to the variable B
B=1
Put one for the variable B
for i in range (0,n):
Execute for loop with i from zero to n
for i in range (0,N):
Enforce for loop with i from zero to N
for i in range (0,N):
Execute for loop with i from 0 to N
for i in range (0,N):
Start for loop with i from zero to N
for i in range (0,n):
Start for loop with i from zero to n
for i in range (0,N):
Start for loop with i from 0 to N
for i in range (0,n):
Execute for loop with i from zero to n
for i in range (0,n):
Execute for loop with i from zero to n
for i in range (0,N):
Execute for loop with i from 0 to N
for i in range (0,N):
Start for loop with i from zero to N
for i in range (0,N):
Start for loop with i from zero to N
for i in range (0,N):
Start for loop with i from 0 to N
print(A)
Print the variable A inside the loop
print(A)
Print the variable A inside the loop
print(A)
Print Variable A inside loop
print(A)
Print Variable A inside loop
C = A + B
Assign the sum of A and B to the variable C inside the loop
C = A + B
Intra-loop C=A+B
C = A + B
Declare the variable C inside the loop and collect the sum of A times B in it
A = B
A=B inside the loop
A = B
Collect the value of A null B inside the loop
A = B
Assign AG B value inside loop
B = C
B=C inside the loop
B = C
Collect the value of B to C inside the loop
B = C
Assign a B to C value inside the loop
i=0
Assign zero to a variable i
i=0
Assign zero to a variable i
i=0
Assign zero to the variable i
i=0
Put zero to a variable i
amount=0
Assign zero to the variable amount
Amount=0
Assign zero to the variable Amount
Amount=0
Assign zero to the variable Amount
amount=0
Put zero to the variable amount
while i<N+1 :
Enforce while Loop with a condition that Variable I number must be less than one
while i<N+1 :
Start while Loop with a condition that Variable I number must be less than one
while i<N+1 :
Execute a whilst loop with a condition that the variable i number must be less than one
while i<N+1 :
Start with a condition that while Loop I variable number must be less than one plus
while i<N+1 :
Enforce with a condition that while Loop I variable number must be less than one plus
while i<N+1 :
Execute while Loop with the condition that Variable I < Number + 1 must be true
while i<N+1 :
Start while Loop with a condition that Variable I < Number + 1 must be true
while i<N+1 :
Execute while Loop with the condition that Variable I < Number + 1 must be true
while i<N+1 :
Start with a condition that while Loop I < Number + 1 must be true
while i<N+1 :
Enforce with condition that while Loop I < Number + 1 must be true
amount+=i
Put the result plus i to the variable amount inside the loop
amount+=i
Add i to the variable amount inside the loop
amount+=i
Intra-rupee amount += i
Amount= Amount + i
Intra-rupee Amount = Amount + I
i += 1
Increase from one to five inside the loop
i += 1
Increase from one to the variable i inside the loop
i += 1
Intra-rupee i += 1
i += 1
Intra-loop I = I + 1
i += 1
Increase the variable i within the loop by one
print(Amount)
Print Variable Amount
print(amount)
Print variable amount
print(amount)
Print variable amount
print(amount)
Print variable amount
number = float(input("Enter number : "))
Declare a variable number with decimal point and store the input given by the user to it
number = float(input("Enter number : "))
Assign user input to variable number with decimal point
number = float(input("Enter number : "))
Assign user input to variable number with decimal point
number = float(input("Enter number : "))
Set the value given by the user to the floating variable number
number = float(input("Enter number : "))
Assign the value given by the user to the variable number that is floating
amount=0
Assign zero to the variable amount
Amount=0
Assign zero to the variable Amount
Amount=0
Assign zero to the variable Amount
amount=0
Put zero to the variable amount
A=number
A=number
A=number
Collect A with number Value
A=number
Assign A with number value
for i in range(0,4):
Execute for loop with i from zero to four
for i in range(0,4):
Execute for loop with i from zero to four
for i in range(0,4):
Execute for loop with i from 0 to 4
for i in range(0,4):
Start for loop with i from zero to four
for i in range(0,4):
Start for loop with i from zero to four
for i in range(0,4):
Start for loop with i from 0 to 4
for i in range(0,4):
Execute for loop with i from zero to four
for i in range(0,4):
Execute for loop with i from zero to four
for i in range(0,4):
Execute for loop with i from 0 to 4
for i in range(0,4):
Start for loop with i from zero to four
for i in range(0,4):
Start for loop with i from zero to four
for i in range(0,4):
Start for loop with i from 0 to 4
digit=A%10
Digit inside loop = A%10
digit=A%10
Declare the variable digit inside the loop and then divide A by ten and then collect the remaining number in it
digit=A%10
Declare the variable digit and assign the remaining number to A after dividing it by ten
digit=A%10
Declare the variable digit inside the loop and assign the remaining number to A after dividing it by ten
digit=A%10
Declare the variable digit inside the loop and then divide A by ten and then collect the remaining number in it
Amount+=number**3
Intra-rupee Amount=Figure**3
if number==sum print("It is an Armstrong number")
If number and amount are equal, print "It is an Armstrong number
if number==sum print("It is an Armstrong number")
If number==amount, print "It is an Armstrong number
if number==sum print("It is an Armstrong number")
If amount==number , print "It is an Armstrong number