Files
42_EXT_04_piscine_python/d00/ex03/tester.py
hugogogo f915ffb79b ex03 ok
2025-10-26 12:38:58 +01:00

21 lines
383 B
Python
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
from NULL_not_found import NULL_not_found
Nothing = None
Garlic = float("NaN")
Garlic2 = float("2")
Zero = 0
Empty = '' #
Fake = False
Right = True
NULL_not_found(Nothing)
NULL_not_found(Garlic)
NULL_not_found(Zero)
NULL_not_found(Empty)
NULL_not_found(Fake)
print(NULL_not_found("Brian"))
print("--")
NULL_not_found(Garlic2)
NULL_not_found(Right)
print(NULL_not_found(""))