文本序列

Text Sequence Type
Text Sequence Type
f-string
formatting operations
String Methods

使用点 . 触发代码提示,查看更多函数

查看字符串所有的普通函数

mehods = dir(str)
for method in mehods:
    if not method.startswith("__"):
        print(method)