• 2022-06-01
    str1 = "hello world!!!"str2 = "word"print(str1.find(str2, 5)打印的结果是:
    A: 5
    B: -1
    C: 0
    D: 7