str_v = "level"for c in str_v: print(c)# Iterating with indexfor i in range(0, len(str_v)): print(f"str_v[{i}] = \"{str_v[i]}\"")