Answer the question
In order to leave comments, you need to log in
Is it possible to check the next element in a loop?
How can this be implemented?
for i in info:
if i.isdigit():
if i.isdigit() and # Нужно проверить, является ли следующий элемент тоже числом
digits += i
else:
letters += i
Answer the question
In order to leave comments, you need to log in
Like so
for t, i in enumerate(info):
if i.isdigit():
if i.isdigit() and info[t + 1].isdigit()# Нужно проверить, является ли следующий элемент тоже числом
digits += i
else:
letters += i
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question