snowflake.snowpark.functions.is_null¶ snowflake.snowpark.functions.is_null(e: ColumnOrName) → Column[source]¶ Return true if the value in the column is null. Example: CopyExpand>>> from snowflake.snowpark.functions import is_null >>> df = session.create_dataframe([1.2, float("nan"), None, 1.0], schema=["a"]) >>> df.select(is_null("a").as_("a")).collect() [Row(A=False), Row(A=False), Row(A=True), Row(A=False)] Show lessSee moreScroll to top