Answers for "if this in python"

0

if statement python

can_do = True
can_do1 = True

if can_do:
    print("we can do it")
elif can_do1:
    print("we can do it but the second time")    
else:
    print("we cant do it")
#result should be (we can do it.)
Posted by: Guest on February-07-2022

Python Answers by Framework

Browse Popular Code Answers by Language