Learn practical skills, build real-world projects, and advance your career
number=33
number=32
if number>=32:
    print("the num is true")
    print('the num {} is verified'.format(number))
else:
    print("the num is false")
the num is true the num 32 is verified
a=['arvind','sriram','radha']
b='praveen'
if b in a:
    print('the name {} is present'.format(b))
else:
    print('the name {} is not present'.format(b))
the name praveen is not present