|
|
@ -207,10 +207,10 @@ String |
|
|
|
<int> = <str>.index(<sub_str>) # Returns first index of substring. |
|
|
|
``` |
|
|
|
|
|
|
|
### Ord |
|
|
|
### Char |
|
|
|
```python |
|
|
|
<str> = chr(<int>) # Converts int to unicode char. |
|
|
|
<int> = ord(<str>) # Converts unicode char to int. |
|
|
|
<str> = chr(<int>) # Converts int to unicode char. |
|
|
|
<int> = ord(<str>) # Converts unicode char to int. |
|
|
|
``` |
|
|
|
|
|
|
|
```python |
|
|
|