下面是一个使用count()函数统计某个字符在给定字符串中出现次数的例子: str1="Hello, World!"char="o"count=str1.count(char)print("字符 '{}' 在字符串中出现的次数为: {}".format(char,count)) 1. 2. 3. 4. 上述代码中,我们定义了一个字符串str1和一个字符char,然后使用count()函数统计字符char...