(s: str)
| 13 | s.isidentifier(), s.istitle(), s.isprintable() |
| 14 | |
| 15 | def test_str_to(s: str) -> Tuple[str, str, str, str, str]: |
| 16 | return s.upper(), s.lower(), s.capitalize(), s.title(), s.swapcase() |
| 17 | |
| 18 | def test_str_strip(s: str) -> Tuple[str, str, str]: |
| 19 | return ( |