Answers for "if i != '' 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
0

how to if in pythob

if ^statement:
	#code
elif ^statement:
	#code
else:
	#code
Posted by: Guest on June-04-2021

Python Answers by Framework

Browse Popular Code Answers by Language