hello_str = "hello hello"#统计字符串长度"print(len(hello_str))#统计某一个小字符串出现的次数print(hello_str.count("llo"))#某一个子字符串出现的位置print(hello_str.index("llo"))