-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add division functionality and test #6
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hey Aliya, Can you please make the necessary changes
pythoncalculator/divide.py
Outdated
@@ -0,0 +1,2 @@ | |||
def divide(x, z): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you please change the parameters "y" instead of "z"
def divide(x, z): | |
def divide(x, y): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There is a small typo, the input to the function is defined incorrectly.
Thank you.
pythoncalculator/divide.py
Outdated
@@ -0,0 +1,2 @@ | |||
def divide(x, z): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The input to the function should be:
def divide(x, y)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you for updating
Aha! Your |
@aliyansrddn you need to move the file into the right location |
Resolves #3