[Solved] Adding first character of a string to each of the other characters [closed]
[ad_1] A simple way to do it is to iterate over the string, that will give you each letter separately: alphabet = “abcdefghijklmnopqrstuvwxyz” for letter in alphabet: print(“a” + letter) [ad_2] solved Adding first character of a string to each of the other characters [closed]