w3resource logo


Python Exercises

Python: Remove the characters of odd index values of a given string


Write a Python program to remove the characters which have odd index values of a given string.

Sample Solution :

Python Code :

def odd_values_string(str):
  result = "" 
  for i in range(len(str)):
    if i % 2 == 0:
      result = result + str[i]
  return result

print(odd_values_string('abcdef'))
print(odd_values_string('python'))

Console :

Copy and paste the above code and press "Enter key" to execute :

Post your code through Disqus