我想从字符串中删除每个元素。 例如: s =“ abcde” 现在我要先删除“ e”,然后删除“ d”,直到s为空。
答案 0 :(得分:0)
您可以使用切片:
s = 'abcde'
for i in range(len(s), 0, -1):
print(s[:i])
答案 1 :(得分:0)
您应该将slice运算符用作:
pairgrid
答案 2 :(得分:0)
s = 'abcde'
c = list(s) # this line converts the string to array of
# characters [ 'a', 'b', 'c', 'd', 'e']
while c: # loop till array is empty
c.pop() # Retrieve elements from the array end and
# remove it from array
输出:
'e'
'd'
'c'
'b'
'a'