05.字符串综合练习

# 编写一个Python程序,对一个简单的故事进行如下操作:
# 统计故事中的单词数量。
# 查找主人公的名字在故事中的位置。
# 将主人公的名字替换为你的名字。
# 将故事改写为大写和小写形式。

# 写一段故事
story = "There once lived a cute lovable girl named Cinderella."

# 1. 统计故事中的单词数量。
words_num = len(story.split())
print(f"故事中的单词数量为:{words_num}")

# 2. 查找主人公的名字在故事中的位置。
princess_name = "Cinderella"
locate = story.find(princess_name)
print(f"主人公名字在故事中的位置:{locate}")

# 3. 将主人公的名字替换为你的名字。
your_name = "Bela"
new_story = story.replace(princess_name, your_name)
print(f"替换名字之后的故事:{new_story}")

# 4. 将故事改写为大写和小写形式。
story_upper = story.upper()
story_lower = story.lower()
print(f"大写的故事:{story_upper}")
print(f"小写的故事:{story_lower}")

 返回:Python刷题进阶之旅-CSDN博客

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值