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.
Why is it every time showing test case wrong although my coding is correct, I have run the same code on Google collab and it's working fine on that ....can anyone help me what is wromg here??!!
if name == 'main':
a = int(input())
b = int(input())
print("Division:", a // b)
print("Float Division:", a / b)
Python: Division
You are viewing a single comment's thread. Return to all comments →
Why is it every time showing test case wrong although my coding is correct, I have run the same code on Google collab and it's working fine on that ....can anyone help me what is wromg here??!! if name == 'main': a = int(input()) b = int(input()) print("Division:", a // b) print("Float Division:", a / b)