Given the string, we have to remove the ith indexed character from the string.
In any string, indexing always start from 0. Suppose we have a string geeks then its indexing will be as –
g e e k s
0 1 2 3 4
Examples :
Input : Geek
i = 1
Output : Gek
Program for removing i-th character from a string : https://www.geeksforgeeks.org/python-program-for-removing-i-th-character-from-a-string/