博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Python零基础学习代码实践 —— 提取字符串里面的单词数 ...
阅读量:5944 次
发布时间:2019-06-19

本文共 464 字,大约阅读时间需要 1 分钟。

str = input()str1 = str.strip()index = 0count = 0while index < len(str1):    while str1[index] != " ":        index += 1        if index == len(str1):            break    count += 1    if index == len(str1):        break    while str1[index] == " ":        index += 1print(count)

执行结果

C:\Users\Administrator\AppData\Local\Programs\Python\Python37-32\python.exe C:/Users/Administrator/PycharmProjects/untitled/day005/提取字符转里面的单词数.py4Process finished with exit code 0

转载地址:http://sdzxx.baihongyu.com/

你可能感兴趣的文章
深入浅出SQL Server中的死锁
查看>>
用LinqPad查看Nhibernate生成的sql语句
查看>>
Android -- 在ScrollView中嵌套ListView
查看>>
企业搜索引擎开发之连接器connector(十九)
查看>>
树状数组(Binary Indexed Tree) 总结
查看>>
我怎么会做这样的梦呢?
查看>>
发短信接口获取验证码
查看>>
springMVC3学习(二)--ModelAndView对象
查看>>
【图论】广度优先搜索和深度优先搜索
查看>>
Android开发环境搭建(图文教程)
查看>>
Linux在线用户通信
查看>>
SSH框架总结(框架分析+环境搭建+实例源代码下载)
查看>>
Mapnik读取PostGIS数据渲染图片
查看>>
javascript中使用Map
查看>>
backbonejs中的模型篇(二)
查看>>
Spring MVC 3 深入总结
查看>>
内存泄漏以及常见的解决方法
查看>>
HDP2.0.6+hadoop2.2.0+eclipse(windows和linux下)调试环境搭建
查看>>
【转】R语言笔记--颜色的使用
查看>>
.woff HTTP GET 404 (Not Found)
查看>>