From 221d87edf3bbf31ef7b0afcc1f969be3c7eac3c2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jure=20=C5=A0orn?= Date: Mon, 18 Feb 2019 21:41:28 +0100 Subject: [PATCH] Path --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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