*
Size: a a a
️️
st = [('hello:text:'), ('world:text:'), ('string:text:') и т.п
]:text:
i = 0
while i > len(st):
print(st[i].replace(":text:", "")
i+=1
AttributeError: 'tuple' object has no attribute 'replace'
️️
️️
*
*
️️
️️
*
️️
for trp in st:
print(trp.replace(":text:",""))
️️
️️
️️
️️
️️
️️
️️