可能是一个菜鸟问题,但我如何为字符串中的每个空格创建 for 语句?text = "Hello World, this is a string!"for spaces in text # do blah blah
1 回答
桃花长相依
TA贡献1860条经验 获得超8个赞
获取for循环中的每个字符并使用if条件检查它是否为空格
text = "Hello World, this is a string!"
for character in text:
if character == " ":
# do blah blah
添加回答
举报
0/150
提交
取消