p = 0 s = 'How can i get there?' for i in s: if i == 'P'or i == 'p': p = p + 1 else: continue if p != 0: print('有',p,'个') else: print('无')
转载于:https://www.cnblogs.com/wumac/p/5693046.html
p = 0 s = 'How can i get there?' for i in s: if i == 'P'or i == 'p': p = p + 1 else: continue if p != 0: print('有',p,'个') else: print('无')
转载于:https://www.cnblogs.com/wumac/p/5693046.html