Write a Python Program Add Two Lists

Опубликовано: 17 Июль 2022
на канале: Code With TJ
582
3

Hi in this video I tried to explain Write a Python Program Add Two Lists


Python Scripts
======================
https://codewithtj.blogspot.com/2024/...

Python Functions Solved
==========================
https://codewithtj.blogspot.com/2023/...

Python Programs Solved
============================
https://codewithtj.blogspot.com/2023/...


Steps
=======
a) get two lists list1, list2
b) using for loop enumerate the list1 and list2
b) add the elements of list1 and list2 and append it to result list
d) print the final resultant list

code
===============
list1 = [12, 23, 34, 45, 56, 67]
list2 = [1, 2, 3, 4, 5, 6]

result = []
for index, item in enumerate(list1):
result += [item + list2[index],]

print(result)

keywords
===============
write a python program to add two lists,
python program to add elements of two lists,
python program to add elements of two lists,
python program to add two lists,
python program to add elements of two lists,
write a python program to add two lists,


На этой странице сайта вы можете посмотреть видео онлайн Write a Python Program Add Two Lists длительностью часов минут секунд в хорошем качестве, которое загрузил пользователь Code With TJ 17 Июль 2022, поделитесь ссылкой с друзьями и знакомыми, на youtube это видео уже посмотрели 582 раз и оно понравилось 3 зрителям. Приятного просмотра!