创新互联Python教程:
成都创新互联长期为上1000+客户提供的网站建设服务,团队从业经验10年,关注不同地域、不同群体,并针对不同对象提供差异化的产品和服务;打造开放共赢平台,与合作伙伴共同营造健康的互联网生态环境。为原州企业提供专业的网站制作、网站设计,原州网站改版等技术服务。拥有十年丰富建站经验和众多成功案例,为您定制开发。
写一个 Python 程序来计算一个字符串中的总字数,并给出一个实例。
这个 python 程序允许用户输入一个字符串(或字符数组)。接下来,它使用 For 循环计算该字符串中出现的单词总数。这里,我们使用 Python For 循环来迭代字符串中的每个字符。在 For 循环中,我们使用 If 语句来检查是否有空格。如果它找到了空白,那么总字数就会增加。
# Python program to Count Total Number of Words in a String
str1 = input("Please Enter your Own String : ")
total = 1
for i in range(len(str1)):
if(str1[i] == ' ' or str1 == '\n' or str1 == '\t'):
total = total + 1
print("Total Number of Words in this String = ", total)
这个 python 程序的一个字符串的总字数同上。然而,我们只是将换成了而环。
# Python program to Count Total Number of Words in a String
str1 = input("Please Enter your Own String : ")
total = 1
i = 0
while(i < len(str1)):
if(str1[i] == ' ' or str1 == '\n' or str1 == '\t'):
total = total + 1
i = i + 1
print("Total Number of Words in this String = ", total)
Python 使用 while 循环输出对字符串中的单词进行计数
Please Enter your Own String : Tutorial Gateway
Total Number of Words in this String = 2
该 Python 计数字符串中的总字数与第一个示例相同。但是,这一次,我们使用了函数概念来分离 Python 逻辑。
# Python program to Count Total Number of Words in a String
def Count_Total_Words(str1):
total = 1
for i in range(len(str1)):
if(str1[i] == ' ' or str1 == '\n' or str1 == '\t'):
total = total + 1
return total
string = input("Please Enter your Own String : ")
leng = Count_Total_Words(string)
print("Total Number of Words in this String = ", leng)
Python 使用函数输出对字符串中的单词进行计数
Please Enter your Own String : Python Hello World Program
Total Number of Words in this String = 4
网站题目:Python程序:计算字符串中总字数
分享路径:http://www.mswzjz.cn/qtweb/news37/42387.html
攀枝花网站建设、攀枝花网站运维推广公司-贝锐智能,是专注品牌与效果的网络营销公司;服务项目有等
声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 贝锐智能