my_str = "Devsheet" my_list = list(my_str) print(my_list) #-> ['D', 'e', 'v', 's', 'h', 'e', 'e', 't']
0 Comments