mystring = "Hello Oraask"
# Getting length of string
lengthOfmystring = len(mystring)
# Iterating through the string using while loop
for i in mystring[0:lengthOfmystring:2] :
# Print all characters iterated
print("Element of string:" , i)
start #position of character in string to start at, 0 indexed
stop #position of character in string to stop at, 0 indexed
iteration #number of characters to iterate over, e.g. 2, 3, 4, etc.
for character in string[start:stop:iteration]
#do funky magik thang hur