标签:size 字符串 += style ott print 计算 put raw_input
写出一个程序,接受一个有字母和数字以及空格组成的字符串,和一个字符,然后输出输入字符串中含有该字符的个数。不区分大小写。
输入一个有字母和数字以及空格组成的字符串,和一个字符。
输出输入字符串中含有该字符的个数。
str1=raw_input()
str2=raw_input()
s=0
for ch in str1:
if ch==str2 or ord(ch)==ord(str2)+32 or ord(ch)==ord(str2)-32:
s+=1
print s
如果区分大小写的话:
str1=raw_input()
str2=raw_input()
N= str1.count(str2)
print N
标签:size 字符串 += style ott print 计算 put raw_input
原文地址:http://www.cnblogs.com/zn542539260/p/7623770.html