欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

计算字符个数-Python实现-华为机试

程序员文章站 2022-04-04 11:13:21
...

计算字符个数-Python实现-华为机试
Python实现:

str1 = input()
str2 = input()

count = 0
for n in range(len(str1)):
    if str1[n].upper() == str2.upper():
        count += 1
print(count)