Write a python script that traverses through an input string and prints its characteristics in different lines – two character per string

S = "techtipnow"
for i in range(0, len(S), 2):
   print(S[i : i+2])
error: Content is protected !!