Answers for "how to use and in if python"

3

if in python

# if statment 
#'if' gives condition in statement to make program more efficient.
a=10
b=5
if a%b==0:
    print('true')

output:
true
Posted by: Guest on November-26-2021

Code answers related to "how to use and in if python"

Python Answers by Framework

Browse Popular Code Answers by Language