From 65d9c255137476eaa669a8de92a52ebf4489aade Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jure=20=C5=A0orn?= Date: Sun, 25 Mar 2018 15:00:29 +0200 Subject: [PATCH] Readme --- README.md | 25 +++++++++++-------------- 1 file changed, 11 insertions(+), 14 deletions(-) diff --git a/README.md b/README.md index 61739fd..9a99e97 100644 --- a/README.md +++ b/README.md @@ -94,9 +94,9 @@ Iterator for line in iter(input, ''): ... ``` -* Use `partial` from functools if function needs arguments: +* Use `partial` from functools if function needs arguments. -#### Skips first element. +#### Skips first element: ```python next() for element in : @@ -360,19 +360,16 @@ sys.argv ### Read File ```python -with open(file_name, encoding='utf-8') as file: - return file.readlines() -``` -```python -def get_file_contents(file_name): - with open(file_name, encoding='utf-8') as file: +def read_file(filename): + with open(filename, encoding='utf-8') as file: return file.readlines() ``` ### Write to File ```python -with open(file_name, 'w', enconding='utf-8') as file: - file.write(text) +def write_to_file(filename, text): + with open(filename, 'w', enconding='utf-8') as file: + file.write(text) ``` ### Execute Command @@ -424,7 +421,7 @@ db = sqlite3.connect(file_name) ```python cursor = db.execute() if cursor: - cursor.fetchall() # Or "cursor.fetchone()" + cursor.fetchall() # Or cursor.fetchone() db.close() ``` @@ -536,7 +533,7 @@ islice([1, 2, 3], 1, None) [2, 3] ``` -### Ifilter/imap/izip +### Ifilter, imap and izip * Filter, map and zip functions that return generators instead of iterators. @@ -583,7 +580,7 @@ False ### Type Type is the root class. If only passed the object it returns it's type. -Otherwise it creates new class (and not the instance!). +Otherwise it creates a new class (and not the instance!). ```python type(class_name, parents, attributes) ``` @@ -594,7 +591,7 @@ type(class_name, parents, attributes) ``` ### MetaClass -#### Classes that create classes. +#### Class that creates class: ```python def my_meta_class(name, parents, attrs): ...