标签:int form format 保存 pytho for sub 利用 方法
s = input("请输入一个字符串:") while True: subStr = input("请输入另一个字符串") if subStr == "exit": break; i = 0 count = 0 while i < len(s): j = s.find(subStr,i) if j > -1: count +=1 i = j + len(subStr) else: break; print("‘‘{}‘在‘{}‘中出现了‘{}‘次".format(subStr,s,count))
标签:int form format 保存 pytho for sub 利用 方法
原文地址:https://www.cnblogs.com/ppystudy/p/12111020.html