Home
О нас
Products
Services
Регистрация
Войти
Поиск
Krestofer
@Krestofer
July 2022
1
2
Report
помогите решить задачи в python
Please enter comments
Please enter your name.
Please enter the correct email address.
Agree to
terms of service
You must agree before submitting.
Send
Answers & Comments
BrightOne
# Python 3.X
print('№1')
l = []
while True:
i = int(input())
if i == 0:
break
else:
l.append(i)
print('Вы ввели:', ', '.join(map(str, l)))
print('№2')
from random import randint
from functools import reduce
print(reduce(lambda x, y: x + y if y % 2 == 0 else x, [randint(1, 51) for _ in range(10)]))
1 votes
Thanks 0
More Questions From This User
See All
Krestofer
August 2022 | 0 Ответы
pomogite algebru reshit srochno ochen nado
Answer
Krestofer
August 2022 | 0 Ответы
pomogite dayu 40b 1 devochka smusheo ulybnulas2 tancovshica dvigalas gracioz
Answer
Krestofer
July 2022 | 0 Ответы
pomogite reshit zadachu v pythonc63f76b28d905dcd8b697174eafc3347 53974
Answer
Krestofer
July 2022 | 0 Ответы
pomogite pridumat deviz k nazvaniyu bez pechali
Answer
Krestofer
May 2021 | 0 Ответы
pomogite test reshit srochno ochen nado 1 v kakom ryadu vo vseh slovah propushe
Answer
Krestofer
May 2021 | 0 Ответы
pomogite s zadaniem po russkomu yazyku ochen srochno nuzhno uprazhnenie 2 perepi
Answer
Krestofer
May 2021 | 0 Ответы
pomogite s zadaniem po russkomu yazyku ochen srochno nuzhno prochitajte ukazhite
Answer
Krestofer
May 2021 | 0 Ответы
pomogite s zadaniem po russkomu yazyku ochen srochno nuzhno uprazhnenie 1 perepi
Answer
рекомендуемые вопросы
rarrrrrrrr
August 2022 | 0 Ответы
o chem dolzhny pozabotitsya v pervuyu ochered vzroslye pri organizacionnom vyvoze n
danilarsentev
August 2022 | 0 Ответы
est dva stanka na kotoryh vypuskayut odinakovye zapchasti odin proizvodit a zapcha
myachina8
August 2022 | 0 Ответы
najti po grafiku otnoshenie v3v1 v otvetah napisano 9 no nuzhno reshenie
ydpmn7cn6w
August 2022 | 0 Ответы
Choose the correct preposition: 1.I am fond (out,of,from) literature. 2.where ar...
millermilena658
August 2022 | 0 Ответы
opredelite kak sozdavalas i kto sozdaval arabskoe gosudarstvo v kracii
MrZooM222
August 2022 | 0 Ответы
ch ajtmanov v rasskaze krasnoe yabloko ispolzuet metod rasskaz v rasskaze opi
timobila47
August 2022 | 0 Ответы
kakovo bylo naznachenie kazhdoj iz chastej vizantijskogo hrama pomogite pozhalujsta
ivanyyaremkiv
August 2022 | 0 Ответы
moment. 6....
pozhalujsta8b98a56c0152a07b8f4cbcd89aa2f01e 97513
sarvinozwakirjanova
August 2022 | 0 Ответы
pomogite pozhalusto pzha519d7eb8246a08ab0df06cc59e9dedb 6631
×
Report "помогите решить задачи в python..."
Your name
Email
Reason
-Select Reason-
Pornographic
Defamatory
Illegal/Unlawful
Spam
Other Terms Of Service Violation
File a copyright complaint
Description
Helpful Links
О нас
Политика конфиденциальности
Правила и условия
Copyright
Контакты
Helpful Social
Get monthly updates
Submit
Copyright © 2025 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
print('№1')
l = []
while True:
i = int(input())
if i == 0:
break
else:
l.append(i)
print('Вы ввели:', ', '.join(map(str, l)))
print('№2')
from random import randint
from functools import reduce
print(reduce(lambda x, y: x + y if y % 2 == 0 else x, [randint(1, 51) for _ in range(10)]))