Saperate Even and odd numbers through Python List || #djangomentorship #python #pythonlist #python3

preview_player
Показать описание
Saperate Even and odd numbers through Python List || #djangomentorship #python #pythonlist #python3

For more videos subscribe my channel

Learn with djagno mentorship

Python List
How to saperate even and odd numbers thorugh python list
How to create list
How to use append method with list
How to loop through the list
How to use range function in python
and much more...

#djangomentorship #python #coding #pythonprogramming #python3 #codingforbeginners #codinglife #pythonlist #pythoncode #pythoncoding #learnpython #pythoncourseinhindi #pythontutorial #pythoncoursefree #viral #shorts #viralshorts #viralshort
Рекомендации по теме
Комментарии
Автор

my_list = [num for num in range(start, end + 1)]

xMORAENNx
Автор

evenlist = [num for num in my_list if num % 2 == 0]

xMORAENNx
Автор

oddlist= [num for num in my_list if num % 2 != 0]

xMORAENNx