Skip to content
CodeWiki
Practice
Paths
Tracks
Cheatsheets
Playground
Glossary
AI era
Search
⌘K
English
English
Chinese
Practice
Paths
Tracks
Cheatsheets
Playground
Glossary
AI era
English
English
Chinese
Practice
/
Quiz
/
Data science
/
Polars
A Float64 column uses both null and NaN for missing measurements. Which expression conver…
from Polars
Python 3.14
intermediate
1 min
A Float64 column uses both null and NaN for missing measurements. Which expression converts both to 0.0?
pl.col("value").fill_nan(None).fill_null(0.0)
pl.col("value").fill_null(0.0)
pl.col("value").fill_nan(0.0)
pl.col("value").drop_nulls()
Check
Ask AI about this kata
Report an error
previous kata
A tax expression needs the revenue alias created from quantity and unit_price. Which shap…
Quiz
next kata
What does this program print?
Predict the output
A new version is available
Reload