WinIce 发表于 2020-8-13 23:30:43

18节课后习题中

def findStr(desStr, subStr):
    count = 0
    length = len(desStr)
    if subStr not in desStr:
      print('在目标字符串中未找到字符串!')
    else:
      for each1 in range(length-1):   
            if desStr == subStr:
                if desStr == subStr:
                  count += 1
                  
      print('子字符串在目标字符串中共出现 %d 次' % count)

desStr = input('请输入目标字符串:')
subStr = input('请输入子字符串(两个字符):')
findStr(desStr, subStr)


    print('子字符串在目标字符串中共出现 %d 次' % count)中为啥d可以显示count的数值
页: [1]
查看完整版本: 18节课后习题中