You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The code for the application is not properly documented. New members wanting to
contribute to the Project may find Difficult to understand the code and may have to spend more
time to understand the code rather than improving it.
Properly Documenting the code will be useful for people who want to contribute or
learn from the code
The text was updated successfully, but these errors were encountered:
defadd(x, y):
""" add: method adds two things parameters: x, y returns: number """
While I understand that your IDE might be doing this automatically for you please avoid the temptation to follow whatever your IDE tells you to do. A useful docstring/comment would be:
defsome_fn():
...
total=cost+damages+repair+1# a comment explaining the significance of 1 and WHY we need it here
...
Comments like the following are also quiet useless:
The code for the application is not properly documented. New members wanting to
contribute to the Project may find Difficult to understand the code and may have to spend more
time to understand the code rather than improving it.
Properly Documenting the code will be useful for people who want to contribute or
learn from the code
The text was updated successfully, but these errors were encountered: