For python
After division, if the result has any decimal number with the full number, I just want to get the full number and ignore the decimal number.
for example:
130/33 = 3.939393
here I just want to use the number "3
" and ignore the ".939393
"
How can I do that?
Thanks in advance.