code
stringlengths
3
157
text
stringlengths
6
207
A=float(input("Enter A : "))
Enter the number with decimal point given by the user to variable A
A=int(input("Enter A : "))
Assign User Giving Number to Variable A
B=float(input("Enter B : "))
Set the value given by the user to variable B with decimal point
B=int(input("Enter B : "))
Assign the value given by the user to variable B
B=float(input("Enter B : "))
Enter the number given by the user to the variable B with decimal point
B=int(input("Enter B : "))
Collect the number given by the user in variable B
B=float(input("Enter B : "))
Assign User Giving Number to Variable B with decimal point
C=int(input("Enter C : "))
Set the value given by the user to variable C
C=float(input("Enter C : "))
Assign User Giving Value to Variable C with decimal point
C=int(input("Enter C : "))
Enter the number given by the user to the variable C
C=float(input("Enter C : "))
Collect the number given by the user in variable C with decimal point
C=int(input("Enter C : "))
Assign User Giving Number to Variable C
sum=A+B+C
Add ABC accumulated amount to the variable sum
sum=A+B+C
Assign sum of A B and C to the variable sum
sum=A+B+C
Set the sum of A C and B for the variable sum
sum=A+B+C
Add A B and C to the variable sum
sum=A+B+C
Assign A B and C to a variable called sum
sum=A+B+C
Collect A B and C in a variable called sum
print(sum)
Print variable sum
print(sum)
Print sum
print(sum)
Print sum
A=int(input("Enter A : "))
Set the value given by the user to variable A
A=int(input("Enter A : "))
Assign User Giving Value to Variable A
A=int(input("Enter A : "))
Enter the number given by the user to variable A
A=int(input("Enter A : "))
Assign User Giving Number to Variable A
print(A+3)
Add three to variable A and print
A=A+3
Add three to variable A
A+=3
Add three to A
print(A+3)
Add three to A Print
print(A+3)
Add three to variable A and print
A=A+3
Add three to A and print
A=A+3
Add three to A
A+=3
Add three to variable A
print(A)
Print Variable A
print(A)
Print Variable A
print(A)
Print variable A
S=int(input("Enter S : "))
Assign User Giving Number to Variable S
S=int(input("Enter S : "))
Enter the number given by the user to the variable S
S=int(input("Enter S : "))
Set the value given by the user to variable S
S=int(input("Enter S : "))
Collect the number given by the user in variable S
A=S*S
Variable A is equivalent to S*S
A=S*S
Variable A is equal to S*S
A=S*S
A=S *S
A=S**2
A=S **2
A=S**2
Variable A equals S **2
A=S**2
Variable A is equal to S **2
A=S**2
Add a value of S **2 to the variable A
A=S**2
Assign the value S**2 to the variable A
A=S**2
Assign a value of S **2 to the variable A
A=S*S
Add S *S value to variable A
A=S*S
Assign S *S value to variable A
A=S*S
Set S *S value for variable A
A=S*S
Put the value of S *S to the variable A
A=S*S
Assign S *S value to variable A
A=S*S
Store S *S value in variable A
A=S**2
Put the value of S **2 to the variable A
A=S**2
Assign the value of S **2 to the variable A
A=S**2
Store the value of S **2 in the variable A
print(A)
Print variable A
print(A)
Print A
print(A)
Print A
A=input("Enter A : ")
Assign User Given Character to Variable A
A=input("Enter A : ")
Enter the user-generated character for variable A
A=input("Enter A : ")
Assign User to Variable A Character
A=input("Enter A : ")
Collect the user-generated character for variable A
if (A == 'a' or A == 'e' or A == 'i' or A== 'o' or A== 'u' or A== 'A' or A == 'E' or A== 'I' or A== 'O' or A== 'U'): print("the given character is a vowel")
If the value of A is equal to a or e or i or o or u then print "the given character is vowel
if (A == 'a' or A == 'e' or A == 'i' or A== 'o' or A== 'u' or A== 'A' or A == 'E' or A== 'I' or A== 'O' or A== 'U'): print("the given character is a vowel")
If the value of variable A is equal to a or e or i or o or u then print "the given character is vowel
else: print("The given character is not a vowel")
Otherwise print "The given character is not a vowel
else: print("The given character is not a vowel")
Print otherwise "The given character is not a vowel
name=input("Enter name : ")
Assign User Given Sentence to Variable Name
name=input("Enter name : ")
Enter the user input sentence for the variable name
name=input("Enter name : ")
Specify the sentence to be given by the user to the variable name
name=input("Enter name : ")
Collect the sentence given by the user to the variable name
print("Hi,My Name is ",name)
Print "Hi, My Name is ",name
print("Hi,My Name is ",name)
Print Hi, My Name is,name
print("Hi,My Name is "+name)
Print "Hi, My Name is"+name
print("Hi,My Name is "+name)
Print "Hi, My Name is"+name
A=10
Put ten to variable A
A=10
Assign value ten to variable A
A=10
Collect ten for Variable A
B=20
Schedule Twenty for Variable B
B=20
Put twenty to variable B
B=20
Set Value Twenty for Variable B
B=20
Collect twenty for variable B
A=10
Schedule ten for variable A
P=int(input("Enter P : "))
Declare the variable P and assign the number given by the user
P=int(input("Enter P : "))
Declare variable P and assign user input numeric value
P=int(input("Enter P : "))
Set the value given by the user to the variable P
P=int(input("Enter P : "))
Assign User Giving Number to Variable P
T=int(input("Enter T : "))
Declare Variable T and assign the number given by the user
T=int(input("Enter T : "))
Declare variable T and assign user input numeric value
T=int(input("Enter T : "))
Set the value given by the user to variable T
T=int(input("Enter T : "))
Assign User Giving Number to Variable T
P=int(input("Enter P :"))
Create a variable P and assign the numeric value provided by the user.
T=int(input("Enter T : "))
Create a variable called T and assign the numeric value provided by the user.
print(P<T)
Print value of variable P is less than T
print(P<=T)
Print that the value of variable P is less than or equal to T
print(P>=T)
Print that the value of variable P is greater than or equal to T
print(P>T)
Print value of variable P is greater than T
print(P!=T)
Print value of variable P is not equal to T