Расположи в правильном порядке результат выполнения следующего кода.
demolist = ['life',42, 'the universe', 6,'and',7,'everything']
for item in demolist:
print ("The Current item is: %s" % item)
The Current item is: 7
The Current item is: 42
The Current item is: life
The Current item is: everything
The Current item is: 6
The Current item is: and
The Current item is: the universe
Ответы
Ответ дал:
28
Ответ:
The Current item is: life
The Current item is: 42
The Current item is: the universe
The Current item is: 6
The Current item is: and
The Current item is: 7
The Current item is: everything
nizamovashlokhon:
Правильно, спасибо
спасибо
Благодарю
Вас заинтересует
2 года назад
2 года назад
2 года назад
8 лет назад
8 лет назад
9 лет назад