diff --git a/Programming_Languages/Python/Modules/IO_in_Python.md b/Programming_Languages/Python/Modules/IO_in_Python.md index 4df8b0a..cd11d22 100644 --- a/Programming_Languages/Python/Modules/IO_in_Python.md +++ b/Programming_Languages/Python/Modules/IO_in_Python.md @@ -29,8 +29,6 @@ file_object = open(, ) In addition we have the following access modes -// TODO: Add table - ## Reading files Once a file object has been intialised with `open()` there are several ways in which the content can be read: diff --git a/Programming_Languages/Python/Syntax/Error_handling_in_Python.md b/Programming_Languages/Python/Syntax/Error_handling_in_Python.md index 008153c..0932b09 100644 --- a/Programming_Languages/Python/Syntax/Error_handling_in_Python.md +++ b/Programming_Languages/Python/Syntax/Error_handling_in_Python.md @@ -69,5 +69,3 @@ else finally # Do concluding action ``` - -// TODO: Get ChatGPT to give me a medium length overview