We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1a59ebe commit 221d87eCopy full SHA for 221d87e
README.md
@@ -889,7 +889,7 @@ while True:
889
**Opens file and returns a corresponding file object.**
890
891
```python
892
-<file> = open(<path>, mode='r', encoding=None)
+<file> = open('<path>', mode='r', encoding=None)
893
```
894
895
#### Modes:
@@ -951,10 +951,10 @@ b'.\n..\nfile1.txt\nfile2.txt\n'
951
### Path
952
953
from os import path, listdir
954
-<bool> = path.exists(<path>)
955
-<bool> = path.isfile(<path>)
956
-<bool> = path.isdir(<path>)
957
-<list> = listdir(<path>)
+<bool> = path.exists('<path>')
+<bool> = path.isfile('<path>')
+<bool> = path.isdir('<path>')
+<list> = listdir('<path>')
958
959
960
0 commit comments