Answers for "stop a function from continuing when a condition is met python"

1

stop a function from continuing when a condition is met python

# use return e.g
def test_function(input):
  if input == 5:
    return 
  else:
    print(input)
    
#f you run 
test_function(5)
#the function will simply just end
Posted by: Guest on June-12-2021

Code answers related to "stop a function from continuing when a condition is met python"

Python Answers by Framework

Browse Popular Code Answers by Language