number = 25.9 check_int = isinstance(25.9, int) print(check_int) OUTPUT False check_float = isinstance(25.9, float) print(check_float) OUTPUT True