diff --git a/README.md b/README.md index dcd43eb..c775011 100644 --- a/README.md +++ b/README.md @@ -889,7 +889,7 @@ while True: **Opens file and returns a corresponding file object.** ```python - = open(, mode='r', encoding=None) + = open('', mode='r', encoding=None) ``` #### Modes: @@ -951,10 +951,10 @@ b'.\n..\nfile1.txt\nfile2.txt\n' ### Path ```python from os import path, listdir - = path.exists() - = path.isfile() - = path.isdir() - = listdir() + = path.exists('') + = path.isfile('') + = path.isdir('') + = listdir('') ``` ```python