I have a list of words:
str_list = [“There”, “is”, “ a Red”, “”, “shirt, but not a white One”]
I want to check if there is a capital letter in every word in the list
and if so I want to make a new list like this:
split_str_list = [“There”, “is”, “ a ”, ”Red”, “”, “shirt, but a white “, ”One”]
I tried:
for word in range(len(str_list)):
if word.isupper():
print str_list[word]
but it does not checking each letter but all of them in a string.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…