Python Lists Tutorial | Python List Functions | Python Tutorial | Python Programming | Simplilearn

preview_player
Показать описание

This Python lists tutorial will help you understand what are lists in Python, how to create lists in Python, how to access elements in lists, various operations that can be applied on lists, methods with lists, built-in function with lists and an exercise using some concepts of lists in Python. A list is a collection of data. It can hold values of multiple data types. Lists are defined by having values between square brackets. It is an important data structure in Python. Now, let us get started and understand what are lists and how to use them.

The below topics are explained in this Python lists tutorial:
1. What are lists in Python? (00:34)
2. Creating lists (01:31)
3. Accessing elements in lists (05:09)
4. Operations on lists (11:23)
5. Methods with lists (15:07)
6. Built-in functions with lists (19:30)
7. Exercise (21:16)

#pythontutorial #pythonprogrammingforbeginners #pythontraining #pythontutorialforbeginners #numpypythontutorial #pythonsimplilearn #simplilearn

➡️ About Post Graduate Program In AI And Machine Learning

This AI ML course is designed to enhance your career in AI and ML by demystifying concepts like machine learning, deep learning, NLP, computer vision, reinforcement learning, and more. You'll also have access to 4 live sessions, led by industry experts, covering the latest advancements in AI such as generative modeling, ChatGPT, OpenAI, and chatbots.

✅ Key Features

- Post Graduate Program certificate and Alumni Association membership
- Exclusive hackathons and Ask me Anything sessions by IBM
- 3 Capstones and 25+ Projects with industry data sets from Twitter, Uber, Mercedes Benz, and many more
- Master Classes delivered by Purdue faculty and IBM experts
- Simplilearn's JobAssist helps you get noticed by top hiring companies
- Gain access to 4 live online sessions on latest AI trends such as ChatGPT, generative AI, explainable AI, and more
- Learn about the applications of ChatGPT, OpenAI, Dall-E, Midjourney & other prominent tools

✅ Skills Covered

- ChatGPT
- Generative AI
- Explainable AI
- Generative Modeling
- Statistics
- Python
- Supervised Learning
- Unsupervised Learning
- NLP
- Neural Networks
- Computer Vision
- And Many More…

🔥🔥 Interested in Attending Live Classes? Call Us: IN - 18002127688 / US - +18445327688
Рекомендации по теме
Комментарии
Автор

Do you have any questions on this topic? Please share your feedback in the comment section below and we'll have our experts answer it for you. Thanks for watching the video. Cheers!

SimplilearnOfficial
Автор

Loved the narration. Her voice is soothing. Instructions were clear. Thank you!

MidjourneyandB
Автор

It's a useful video for us. Thanks for sharing this video on the list with a clear explanation. Please do more videos. All the Best:)

senthil
Автор

Viewers note the difference between extend and append
Good Video and clear voice

kennynelcon
Автор

I am just starting my self taught coding journey. Finding your page has been a blessing. Thank you for making these available. I have one question, as I am new, does this encompass all of the
Functions, Methods, and Operations that one can use with lists? If not, Should I worry about those now, or move on to other forms of data structures?

serratedhumor
Автор

This video help me so much to revise a

bhanupratap
Автор

Tq for ur excellent lesson ...plz share some more useful videos ...and also some critical task qzns ❤️❤️

sureshmaga
Автор

if you extended 1 list with another list how would you undo that?

paulettedotcom
Автор

Can uh please upload all lectures from beggining who is python and awesome channel

hell_Lofi.musicx
Автор

“Operation on lists” in line 19 I am unable to do the operation although I have done every things my output is 0

naushadakbarsiddiqui
Автор

i have a list, like a=[1, 3, 5, 4, 6, 7, 9, 11, 10, 20, 12], i want to print all number who devided by 3 in the list

RohitKumar-encc
Автор

Use the teachers method, her's is smarter




lst = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
odd = lst[0::2]
even = lst[1::2]
print(odd)
print(even)

kennynelcon
Автор

How to separate ODD and EVEN numbers if we take random values into list and also repeated values into list.

ganeshmanepalli
Автор

i have a doubt that what does the two collans 2 (: : 2) represent and why are they used.

nishagarg
Автор

List =a[1::2], how this operation works at the back end

manikandankrishnakumar
Автор

how can i remove multiple strings from a list simultaneously?

AbhishekSingh-xqcu
Автор

how to sort a list in descending order

rajgarh
Автор

lets say we have a list =[1, 1, 1, 2, 3, 42, 65, 2, 5, 7, 3, 9] if we want to just seperate numbers below 5 from this list in one step how to do that

akhilswaminathan