diff --git a/README.md b/README.md index 9bfcff3..70872bb 100644 --- a/README.md +++ b/README.md @@ -182,6 +182,8 @@ String = .endswith() # Pass tuple of strings for multiple options. = .isnumeric() # True if str contains only numeric characters. = .index() # Returns first index of substring. + = chr() # Converts int to unicode char. + = ord() # Converts unicode char to int. ``` ### Print @@ -189,7 +191,6 @@ String print( [, , end='', sep='', file=]) # Use 'file=sys.stderr' for err. ``` - ### Regex ```python import re @@ -1090,12 +1091,6 @@ def get_border(screen): return Coords(width - 1, height - 1) ``` -#### Gets char from int: -```python - = chr() - = ord() -``` - Profile ------- #### Basic: