Hello Programmers, Welcome to my Python Programming Tutorial Channel.
In this video you will learn about how to write a python program to find quotient and remainder
Python Scripts
========================
https://codewithtj.blogspot.com/2024/...
Python Functions Solved
========================
https://codewithtj.blogspot.com/2023/...
Python Programs Solved
========================
https://codewithtj.blogspot.com/2023/...
Python 3 Tutorial - Code
=============================
"""
write a python program to find quotient and remainder
"""
x = float(input("Enter Dividend : "))
y = float(input("Enter Divisor : "))
try:
q = x // y
r = x % y
print("Quotient is : %.2f" % q)
print("Reminder is : %.2f" % r)
except ZeroDivisionError:
print("Error : Division by Zero is not possible")
Keywords
=============================
#python #python3 #python_assignment #pythonprogramming #pythontutorial #pythonprojects #pythoncourse #pythonbaba #pythonforbeginners #pythonautomation #pythonbasic #pythonbeginners