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
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -53,7 +53,7 @@ Algorithms in this repo should not be how-to examples for existing Python packag
53
53
54
54
We want your work to be readable by others; therefore, we encourage you to note the following:
55
55
56
-
- Please write in Python 3.7+. __print()__ is a function in Python 3 so __print "Hello"__ will _not_ work but __print("Hello")__ will.
56
+
- Please write in Python 3.7+. For instance: __print()__ is a function in Python 3 so __print "Hello"__ will _not_ work but __print("Hello")__ will.
57
57
- Please focus hard on naming of functions, classes, and variables. Help your reader by using __descriptive names__ that can help you to remove redundant comments.
58
58
- Single letter variable names are _old school_ so please avoid them unless their life only spans a few lines.
59
59
- Expand acronyms because __gcd()__ is hard to understand but __greatest_common_divisor()__ is not.
0 commit comments