“Итерация через 2 струны Python” Ответ

Итерация через 2 струны Python

# Python 3
for f, b in zip(foo, bar):
    print(f, b)

# Python 2
import itertools
for f, b in itertools.izip(foo, bar):
    print(f,b)
    
# zip and izip stop when the shorter of foo or bar stops.
Noah Folk

Итерация строки 2 символов за раз в Python

mystring = "Hello Oraask"

# Getting length of string 
lengthOfmystring = len(mystring)

# Iterating through the string using while loop 
for i in mystring[0:lengthOfmystring:2] : 
# Print all characters iterated
    print("Element of string:" , i)
Cautious Cow

Ответы похожие на “Итерация через 2 струны Python”

Вопросы похожие на “Итерация через 2 струны Python”

Больше похожих ответов на “Итерация через 2 струны Python” по Python

Смотреть популярные ответы по языку

Смотреть другие языки программирования