diff --git a/README.md b/README.md index b4e7a39..2344735 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,7 @@ list_of_chars = list() ```python index = .index(, [start, [stop]]) .insert(index, ) # Inserts item at index and moves the rest right. - = .pop([index]) # Removes and returns item at index. + = .pop([index]) # Removes and returns item at index or from the end. .remove() # Removes first occurance of item. .clear() # Removes all items. ``` @@ -166,7 +166,7 @@ str.replace(text, old, new) .strip() .join() .startswith() -.isnumeric() +.isnumeric() # True if str contains only numeric characters. ``` ### Print @@ -811,7 +811,8 @@ def get_border(screen): #### Gets char from int: ```python -chr() + = chr() + = ord() ``` Profile