"Delete every third character: Given a string. Delete from it all the characters whose indices are divisible by 3" - Snakify python coding question on February 23, 2022 Get link Facebook X Pinterest Email Other Apps CODING QUESTIONGiven a string. Delete from it all the characters whose indices are divisible by 3 SOLUTION s=str(input())n=len(s)for i in range(n): if i%3==0: print(end="") else: print(s[i],sep='',end='') Input : PythonOutput : yton