Ischinese. Args: ch: TODO.
(ch: str)
| 6 | |
| 7 | |
| 8 | def isChinese(ch: str): |
| 9 | """Ischinese. |
| 10 | |
| 11 | Args: |
| 12 | ch: TODO. |
| 13 | """ |
| 14 | if "\u4e00" <= ch <= "\u9fff" or "\u0030" <= ch <= "\u0039" or ch == "@": |
| 15 | return True |
| 16 | return False |
| 17 | |
| 18 | |
| 19 | def isAllChinese(word: Union[List[Any], str]): |
no outgoing calls
no test coverage detected
searching dependent graphs…