Python math functions plus round(), int() and float() | Python for Beginners

preview_player
Показать описание
A tutorial on Python math functions with comparisons to Excel, including the built-in Python round function, Python integer and Python float. We stick with Python basic math built-in functions and see how they are similar for the Excel user.

For all code examples and the video script see:

Also included is our stack which includes: Debian Linux, MySQL, PostgreSQL, Python for data analysis (Pandas, NumPy, SciPy) and presentation tools for the user experience such as Matplotlib, HTML, CSS and JavaScript.

Links mentioned in this video:

For help on this playlist see:

For more educational resources see:

Don't lose this valuable resource, subscribe today.

Happy Learning!
Рекомендации по теме
Комментарии
Автор

In Excel I use =ROUND(40.285, 2) output : 40.29
But in python print(round(40.285, 2) output : 40.28

I need the result like in excel

snookspxoxo