code
stringlengths 3
157
| text
stringlengths 6
207
|
---|---|
elif (B <= A) and (B <= C):
smallest = B | Otherwise Variable B to Variable A If equal to or less than a and variable
If B is equal to variable C or less than C
Variable B is the smallest of all. Assign B variable to the
smallest variable |
else:
smallest = C | Otherwise the variable C is the smallest of all.
Assign C variable to the smallest variable |
if(B <=A) and (B <=C) :
smallest = B | If Variable B is equal to Variable A or
If less than A and for variable B variable C
Variable B if equal to or less than C
Assign B to the variable smallest of all. Very small |
elif (C <= A) and (C<= B):
smallest = C | Otherwise variable C to variable A
Equivalent or less than A and variable C
If Variable B is equal to or less than B
Variable C is the smallest of all. Assign C variable to the
smallest variable |
elif (A <= B) and (A<= C):
smallest = A | Otherwise variable A to variable B
If equal to or less than B and variable A
If Variable C is equal to or less than C
Variable A is the smallest of all. Assign A variable to the
smallest variable |
else:
smallest = A | Otherwise variable A is the smallest of all. Assign A variable to the smallest
variable |
else:
smallest = B | Otherwise variable B is smaller than all. Assign the B variable to the smallest
variable |
if(C < A) and (C <= B) :
smallest = C | If Variable C is equal to Variable A or
If less than A and variable C to variable B
Variable C if equal to or less than B
The smallest of all variables is the smallest
Assign C to |
elif (B <= A) and (B <= C):
smallest = B | Otherwise Variable B to Variable A
If equal to or less than a and variable b
If Variable C is equal to or less than C
Variable B is the smallest of all. Assign B variable to the
smallest variable |
if (A <= B) and (A <= C):
smallest = A | If A >= B and A >= C A variable is the smallest of all |
elif (B <= A) and (B <= C):
smallest = B | If not then b >= a and b >= c. B variable
is the smallest of all |
if(B <=A) and (B <=C) :
smallest = B | If b >= a and b >= c. B variable is the smallest of all |
elif (C <= A) and (C <= B):
smallest = C | Otherwise c >= a and c >= b. C variable
is the smallest of all |
if(C <= A) and (C <= B) :
smallest = C | If C >= A and C >= b. C variable is the smallest of all |
if (A <= B) and (A <= C):
smallest = A | If Variable A is less than Variable B or
equal to B and less than variable A variable C
If small or equal to c. Variable A is the smallest of
all |
elif (B <= A) and (B <= C):
smallest = B | If not Variable B than Variable A
If small or equal to A and variable B
If variable C is smaller than or equal to C then C
is smaller than all |
if (B <= A) and (B <= C):
smallest = B | If Variable B is less than Variable A or
A is equal to and variable B is less than variable C
If small or equal to c. Variable B
is smaller than all |
elif (C <= A) and (C<= B):
smallest = C | If not than Variable C Variable A
If small or equal to A and variable C
If variable B is smaller than or equal to B C
is smaller than all |
elif (A <= B) and (A<= C):
smallest = A | If otherwise variable A is less than variable B
or equal to B and less than variable A variable C
If A is smaller than or equal to C then A is smaller than all |
print(smallest) | Print smallest |
print(smallest) | Print smallest |
print(smallest) | Print the smallest variable now |
print(smallest) | Print variable smallest |
print(smallest) | Print variable smallest |
var1 = 2 | Assign number two to variable var1. |
var1 = 10 | Assign number ten to variable var1 |
var1 = 2 | Store number two in variable var1 |
var1 = 2 | Declare the variable var1 and store the number two in it |
num_1 = 2 | Assign number two to variable num_1 |
num_2 = 10 | Assign number ten to variable num_2 |
name = 2 | Store number two in variable name |
var1 = 2 | Declare the variable var1 and store the number two in it |
_number1 = 2 | Assign number two to variable _number1 |
_number1 = 10 | Assign number ten to variable _number1 |
_number1 = 2 | Store number two in variable _number1 |
var2 = 2 | Declare the variable var2 and store the number two in it |
first_statement = "Hello World" | Assign 'Hello World' to variable first_statement |
letsgo = "Its awesome to be here" | Assign 'Its awesome to be here' to the string variable letsgo |
statement = "This is our NLP model" | Declare a variable called statement and assign 'This is our NLP model' to it |
statement = "Hello" | Declare a variable called statement and assign 'Hello' to it |
statement = "hello World" | Declare a variable called statement and assign 'hello World' to it |
statement = "ITRL Project" | Declare a variable called statement and assign 'ITRL Project' to it |
letsgo = "Programming in python" | Assign 'Programming in python' to the string variable letsgo |
letsgo = "programming Is SUpeR FuN" | Assign 'programming Is SUpeR FuN' to the string variable programming |
a = 2 | Assign number two to variable a |
b = 10 | Assign number ten to variable b |
c = 2 | Store number two in variable c |
d = 2 | Declare the variable d and store the number two in it |