Computer Science, asked by manojsine3385, 2 months ago

print(B<D) in python​

Answers

Answered by Aloi99
0

Answer:

Lets say you have two variables,

B=5

D=6

if you print,

print(B<D)

output would be True

but if you print,

print (B>D)

output would be False

the >,< operators lie in the comparision operators,other comparision operators are:

>=(Greater than or equal to)

<=(Less than or equal to)

==(Equal to)

!=(Not equal)

Similar questions