Learn Python (8+ hours) - Become Professional Python Developer Full Course (Part 3)

preview_player
Показать описание
Learn Python (8+ hours) - Become Professional Python Developer Full Course (Part 3)

#PythonProgramming #PythonTutorial #PythonForBeginners #PythonFromScratch #PythonInstallation #PythonRun #PythonExecute #PythonLoops #PythonOOP #PythonClasses #PythonFunctions #PythonDataTypes #PythonFullCourse #PythonZeroToHero #LearnPython #Python101 #PythonBasics #PythonLanguage #PythonCoding #pythoncoder

Welcome to Part 3 of your Python Programming course! In this video, we'll be exploring another important data type and data structure in Python - Lists. You'll learn all about list slicing and how to use the "in" keyword with multi-dimensional lists. I'll also introduce you to some tips and tricks used by experienced programmers when working with lists. Additionally, we'll cover the None Data Type and the "None" keyword. Moving on, we'll delve into the powerful world of Dictionaries in Python, including dictionary methods and using the "in" keyword with dictionaries. We'll also cover Tuples, another important data type, including slicing and unpacking tuples, and learn about tuple methods. Finally, we'll explore Sets - another data type and data structure in Python - and set methods. This video is packed with valuable information, so don't miss out!

Each parts plays significant role and its advisable for you to start from part1.

DOWNLOAD THE CODE and FILES:

In this part we will learn:
1) PYTHON LISTS - Another Data Type / Data Structure
2) List slicing
3) In Keyword and multi-dimensional lists
4) Lists Methods
5) Tips and Tricks that programmers use on Lists
6) None Data Type, None Keyword
7) Dictionaries in Python
8) Dictionary Methods and IN Keyword with Dictionaries
9) Tuples (Another Data Type), Slicing and Unpacking Tuples
10) Tuple Methods
11) Sets Another Data Type / Data Structure
12) Set Methods

EDUCATION SHOULD BE FOR FREE If you like my course please subscribe, like and share with your friends.
If you like to learn more about Python I have TWO BOOKS on Amazon:

#1)PYTHON – Master Python OOP Programming with One Guide:

#2) Advanced Python:

Parts:
Part1:

Part2:

Part3:

Рекомендации по теме
Комментарии
Автор

Thanks, sir for the lecture, I have completed part 3, hopefully, will complete the next sessions in the upcoming days

pallabharathkumar
Автор

Hi there everyone. I have created a full Python course and make sure you start watching it from the part1 in order to make sense. 'Yes I know I have said id Okay so many times in this course but I promise I would not do that one in the next one! My mistake at the time of recording I didn't thought about it. Take care and enjoy' Please like, comment and subscribe

theodorecoding
Автор

Hi there I didnt get how come -1 did reverse in section Useful tips for lists # reverse the entire string using slicing, timing at 29:52 ! can anybody help

Nurulllla
Автор

And another question why here is the answer is None

myList=[20, 40, 60]
myList.append(80)
print(myList.remove(20))

After watching this video i was thinking that the answer will be 40, 60, 80
But after i run the code it gives me None

Nurulllla