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