不要抗拒去做自己没接触过的事
不要抗拒去做自己没接触过的事
题解
计算字符个数——python3解法
全部文章
题解
数据结构(2)
算法(4)
计算机网络(11)
归档
标签
去牛客网
登录
/
注册
计算字符个数——python3解法
788 浏览
0 回复
2019-08-23
不要抗拒去做自己没接触过的事
+关注
计算字符个数
http://www.nowcoder.com/practice/a35ce98431874e3a820dbe4b2d0508b1
ans = input().lower() target = input().lower() count1 = ans.count(target) print(count1)
python
举报
收藏
赞
评论加载中...