使用点 . 触发代码提示,查看更多函数
查看字符串所有的普通函数
mehods = dir(str) for method in mehods: if not method.startswith("__"): print(method)