楠韫 发表于 2023-2-17 13:34:55

有没有大佬帮帮菜鸟T-T,为啥加上加上lower不对啊输出不出来

str=input().lower
al=input().lower
cs=str.count(al)
print(cs)

isdkz 发表于 2023-2-17 13:36:45

你没有加括号,要加括号才是调用,

还有变量名不要跟内置函数同名,不然会将内置函数给替换掉,把 str 换成别的

s=input().lower()
al=input().lower()
cs=s.count(al)
print(cs)

楠韫 发表于 2023-2-17 13:43:06

isdkz 发表于 2023-2-17 13:36
你没有加括号,要加括号才是调用,

还有变量名不要跟内置函数同名,不然会将内置函数给替换掉,把 str...

谢谢大佬{:10_266:}
页: [1]
查看完整版本: 有没有大佬帮帮菜鸟T-T,为啥加上加上lower不对啊输出不出来