Answers for "if in fucntion loop pyhton"

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
0

if loop in python syntax

if a>b :
  print(a)
Posted by: Guest on May-09-2021

Python Answers by Framework

Browse Popular Code Answers by Language