Skip to content

Commit 10d38ea

Browse files
authored
CONTRIBUTING.md: Write for current Python (TheAlgorithms#4507)
1 parent daeb6a7 commit 10d38ea

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

CONTRIBUTING.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ pre-commit run --all-files --show-diff-on-failure
6666

6767
We want your work to be readable by others; therefore, we encourage you to note the following:
6868

69-
- 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.
69+
- Please write in Python 3.9+. For instance: `print()` is a function in Python 3 so `print "Hello"` will *not* work but `print("Hello")` will.
7070
- 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.
7171
- Single letter variable names are *old school* so please avoid them unless their life only spans a few lines.
7272
- Expand acronyms because `gcd()` is hard to understand but `greatest_common_divisor()` is not.

0 commit comments

Comments
 (0)