Computer Science, asked by xasin38520, 3 months ago

print series AZ BY CX DW EV ... MN using python​

Answers

Answered by jai696
8

\large\mathsf\color{pink}{Solution\: using\: python\: 3}

def create_series():

char_arr = []

char_1 = bytes("A", 'utf-8')

char_2 = bytes("Z", 'utf-8')

for x in range(13):

char_arr.append(str(char_1)[2] + str(char_2)[2])

char_1 = bytes([char_1[0] + 1])

char_2 = bytes([char_2[0] - 1])

return " ".join(char_arr)

print(create_series())

\large\mathsf\color{lightgreen}useful?\: \color{white}\longrightarrow\: \color{orange}brainliest!

Answered by Anonymous
0

Answer:

anajajajaj

Explanation:

nanajaajaj

Similar questions