Answers for "how to do more than or less than as a condition in pythonb"

0

how to do more than or less than as a condition in pythonb

var1 = 3
var2 = 2

if var1 > var2:
  print('3 is more than 2')
if var2 < var3:
  print('2 is less than 3')
Posted by: Guest on March-07-2020

Code answers related to "how to do more than or less than as a condition in pythonb"

Python Answers by Framework

Browse Popular Code Answers by Language