Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

python if

if num==5:
  print("Num equal to 5")
elif num > 5:
  print("Num more than 5")
else:
  print("Num smaller than 5 but not equal to 5")
Source by python-course.eu #
 
PREVIOUS NEXT
Tagged: #python
ADD COMMENT
Topic
Name
5+4 =