Browse Source

Chr

pull/3/head
Jure Šorn 5 years ago
parent
commit
018d5399bb
1 changed files with 2 additions and 2 deletions
  1. 4
      README.md

4
README.md

@ -182,8 +182,8 @@ String
<bool> = <str>.endswith(<str>) # Pass tuple of strings for multiple options.
<bool> = <str>.isnumeric() # True if str contains only numeric characters.
<int> = <str>.index(<sub_str>) # Returns first index of substring.
<ch> = chr(<int>) # Converts int to unicode char.
<int> = ord(<ch>) # Converts unicode char to int.
<str> = chr(<int>) # Converts int to unicode char.
<int> = ord(<str>) # Converts unicode char to int.
```
### Print

Loading…
Cancel
Save