# 编写一个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}")
05.字符串综合练习
最新推荐文章于 2024-11-17 19:39:42 发布