Files
developer-roadmap/roadmaps/python-data-analysis/content/floats@aLIXcqB258WNrdASuN_7G.md
T
Arik Chakma 274082fd77 feat: clean roadmap content and sync scripts (#10181)
* refactor: clean to roadmap content

* refactor: move shared helpers into scripts/lib
2026-07-28 05:45:17 +06:00

8 lines
531 B
Markdown

# Floats
Floats (`float`) represent real numbers with a decimal point. Most numerical data in analysis involves floats, including prices, measurements, and probabilities. Floating-point arithmetic has precision limitations that can cause small rounding errors, which are important to be aware of in financial and scientific calculations.
Visit the following resources to learn more:
- [@official@Built-in Types](https://docs.python.org/3/library/stdtypes.html)
- [@article@float](https://realpython.com/ref/builtin-types/float/)