Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

what are postcondition errors in python

def mystery(num1, num2):
    new_num = num1 / num2
    is_square = True
    if new_num == num2:
        is_square = True
    return is_square
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #postcondition #errors #python
ADD COMMENT
Topic
Name
9+6 =