We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
- Prepare
- Python
- Introduction
- Python: Division
- Discussions
Python: Division
Python: Division
Sort by
recency
|
975 Discussions
|
Please Login in order to post a comment
For Python3 Platform
if name == 'main': a = int(input()) b = int(input()) print(a//b) print(a/b)
print(a // b, a / b, sep='\n')