केस स्टडी: Python में सॉफ्टवेयर बनाना
Mark Pedigo
Principal Data Scientist


doctest, pytestdoctest: docstring उदाहरणों को वैलिडेट करेंdef area(l, w):
"""
Finds the area given length and width and returns the result
>>> area(1, 1)
1
"""
return l + w
import doctest
doctest.testmod()
Failed example:
area(1,1)
Expected:
1
Got:
2
def area(l, w):
"""
Finds the area given length and width and returns the result
>>> area(1, 1)
1
"""
return l * w
import doctest
doctest.testmod()
सब कुछ ठीक = कोई error संदेश नहीं, कोई आउटपुट नहीं
केस स्टडी: Python में सॉफ्टवेयर बनाना