mstampfer / Coursera-Stanford-ML-Python

Coursera/Stanford Machine Learning course assignments in python
444 stars 233 forks source link

Errata in Coursera-Stanford-ML-Python/Coursera Stanford ML Python wiki.ipynb #13

Open rameziophobia opened 4 years ago

rameziophobia commented 4 years ago

image

In python integer division is done using '//' example: 3 // 2 = 1 however normal divison returns floating point numbers example: 3 / 2 = 1.5

image