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
|
988 Discussions
|
Please Login in order to post a comment
if name == 'main': a = int(input()) b = int(input()) print(f"{a//b}\n{a/b}")
https://pizzatasticworld.com/pizza-express-menu/offers an incredible variety of delicious pizzas, sides, and drinks! Whether you're craving a classic Margherita or exploring their vegan options, there's something for everyone.
if name == 'main': a = int(input()) b = int(input())
a = int(input()) b = int(input()) intdivision=a//b floatdivision=a/b print(intdivision) print(floatdivision)