Commit 6714b999 by arun.uday

comments updation

parent e18614bf
#
# handler packages for shapes
from scripts.core.handlers import Rectangle, Circle, Square
# return statement for invalid choice
def get_rectangle(calculation_choice):
rect_length = int(input("Enter the length"))
rect_breadth = int(input("Enter the breadth"))
......
# Importing modules rectangle, circle, square from scripts
# Importing choice selection module
from scripts.services.choice_selection import get_rectangle, get_circle, get_square
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment