Learn Python A 6-Hour Basic Course For Absolute Beginners

preview_player
Показать описание
Learn Python A 6-Hour Basic Course For Absolute Beginners -
Welcome to my beginner's course on Python programming! In this 6-hour tutorial, I will guide you through the basics of Python programming, even if you have zero prior experience. You'll learn the fundamentals of Python, including syntax, data types, control structures, functions, and more. We'll also walk you through some practical examples to give you a better understanding of how Python works. By the end of the course, you'll be able to write basic Python programs and be ready to tackle more advanced concepts.

⭐️ Course Contents ⭐️
⌨️ (0:00:00) Introduction
⌨️ (0:00:48) Installing Python On Windows
⌨️ (0:03:28) Python on Linux
⌨️ (0:04:11) Running Python On Replit
⌨️ (0:06:05) Vscode SetUp
⌨️ (0:10:31) Hello World
⌨️ (0:14:17) Understanding Variables
⌨️ (0:22:05) Variable Declaration Rules
⌨️ (0:26:09) Python keywords
⌨️ (0:26:12) Comments
⌨️ (0:28:45) Strings
⌨️ (0:41:56) Escape sequences
⌨️ (0:47:15) String methods
⌨️ (0:51:00) Strings formatting
⌨️ (0:56:13) Numbers and Arithmetic
⌨️ (0:56:50) Integers
⌨️ (0:59:00) Math operators
⌨️ (1:03:14) Floating numbers
⌨️ (1:08:51) The modulus operator
⌨️ (1:11:15) important math functions
⌨️ (1:15:46) Getting User Input
⌨️ (1:19:07) Type conversion
⌨️ (1:20:35) Booleans
⌨️ (1:25:15) Boolean operations
⌨️ (1:31:15) If statements
⌨️ (1:45:52) the ternary operator
⌨️ (1:48:31) Indentation
⌨️ (1:51:36) For loops
⌨️ (1:55:45) the range() function
⌨️ (2:00:16) Exercise 1
⌨️ (2:04:16) while loops
⌨️ (2:08:11) Incrementing a number
⌨️ (2:09:07) while loop example
⌨️ (2:22:54) the break statement
⌨️ (2:25:33) the continue statement
⌨️ (2:28:51) a humble request
⌨️ (2:29:07) Another while loop example
⌨️ (2:41:33) match case statements
⌨️ (2:48:03) Functions
⌨️ (2:49:48) Creating functions
⌨️ (2:51:49) Calling functions
⌨️ (2:52:40) Functions that dont return
⌨️ (2:56:43) Function parameters
⌨️ (2:58:52) Parameters vs Arguments
⌨️ (2:59:35) Functions with a return value
⌨️ (3:03:41) Functions with many return values
⌨️ (3:09:09) Positional and keyword arguments
⌨️ (3:11:15) Documenting functions with docstrings
⌨️ (3:13:48) the help() function
⌨️ (3:15:09) default parameters for functions
⌨️ (3:19:37) lists
⌨️ (3:20:01) Creating items in lists
⌨️ (3:22:47) Accessing list items
⌨️ (3:40:17) list methods
⌨️ (3:50:08) list slicing
⌨️ (3:55:16) sorting lists
⌨️ (3:57:05) list of list methods
⌨️ (3:57:12) multi-dimensional lists
⌨️ (4:02:59) list unpacking for functions params
⌨️ (4:07:02) tuples
⌨️ (4:07:37) Creating tuples
⌨️ (4:17:50) the len() function
⌨️ (4:21:45) the del keyword
⌨️ (4:24:56) joining tuples
⌨️ (4:26:48) Dictionaries
⌨️ (4:29:39) the dict() function
⌨️ (4:35:14) Dictionary methods
⌨️ (4:42:50) More dictonary methods
⌨️ (4:45:49) delete dictionary items with del
⌨️ (4:47:33) Exercise 2
⌨️ (4:56:45) Understanding Modules
⌨️ (5:20:25) Intro to the Python standard library
⌨️ (5:22:02) Working with files in Python
⌨️ (5:23:45) writing to a text file
⌨️ (5:29:56) Reading files
⌨️ (5:32:09) DIfferent file open text modes
⌨️ (5:32:14) Error Handling in Python
⌨️ (5:32:38) Some common errors in Python
⌨️ (5:37:23) raising errors
⌨️ (5:42:52) try - except statements
⌨️ (5:59:35) Intro to classes and Objects
⌨️ (6:01:05) Creating classes
⌨️ (6:07:21) Class attributes
⌨️ (6:08:08) Creating Objects
⌨️ (6:08:43) Objects inherit class attributes
⌨️ (6:09:11) Creating methods
⌨️ (6:10:47) the self parameter
⌨️ (6:11:29) calling methods on objects
⌨️ (6:12:52) the __init__method
⌨️ (6:17:37) another example on classes
⌨️ (6:25:54) Inheritance
⌨️ (6:49:51) the isinstance() function
⌨️ (6:51:37) is issubclass() function
⌨️ (6:52:37) Conclusion

PLEASE SUBSCRIBE:

BUY ME A COFFEE:

PLEASE FOLLOW ME ON TWITTER:
Рекомендации по теме
Комментарии
Автор

I am really excited to finally publish this. I hope you enjoy and learn from it. Thanks for watching.

SsaliJonathan
Автор

Video Chapters are also here

00:00 Introduction
00:48 Install Python (Windows)
03:28 Python on Linux
04:11 Run Python (Replit)
06:05 Vscode SetUp
10:31 First program
14:17 Variables
18:55 type() function
20:33 id() function
22:05 How to name variables
26:09 Python keywords
26:12 Comments
28:45 strings
36:23 Access characters in string
38:53 Character membership in strings
40:24 String comparison
41:56 Escape sequences
47:15 String methods
51:00 Strings formatting
56:13 Numbers and Arithmetic
56:50 Integers
59:00 Math operators
1:03:14 Floating numbers
1:08:51 The modulus operator
1:11:15 the round() function
1:13:45 the power() function
1:15:09 the abs() function
1:15:46 Getting User Input
1:19:07 Type conversion
1:20:35 Booleans
1:22:32 the bool() function
1:25:15 Boolean operations
1:31:15 If statements
1:33:49 if else statement
1:35:24 if elif else statement
1:45:52 ternary operator
1:48:31 Indentation
1:51:36 For loops
1:55:45 the range() function
2:00:16 Exercise 1
2:04:16 while loops
2:08:11 Incrementing a number
2:09:07 while loop example
2:17:02 Using while loops with conditions
2:22:54 the break statement
2:25:33 the continue statement
2:28:51 a humble request
2:29:07 Another while loop example
2:41:33 match case statements
2:48:03 Functions
2:49:48 Creating functions
2:51:49 Calling functions
2:52:40 Functions that don't return
2:56:43 Function parameters
2:58:52 Parameters vs Arguments
2:59:35 Functions with a return value
3:03:41 Functions with many return values
3:09:09 Positional and keyword arguments
3:11:15 Documenting functions with docstrings
3:13:48 the help() function
3:15:09 default parameters for functions
3:19:37 lists
3:20:01 Creating items in lists
3:22:47 Accessing list items
3:27:02 item membership in lists
3:37:49 lists are iterables
3:40:17 list methods
3:50:08 list slicing
3:55:16 sorting lists
3:57:05 list of list methods
3:57:12 multi-dimensional lists
4:02:59 list unpacking for functions params
4:07:02 tuples
4:07:37 Creating tuples
4:14:59 tuples are iterable
4:16:07 Access tuple elements
4:17:06 Element membership in tuples
4:17:50 the len() function
4:21:45 the del keyword
4:24:56 adding tuples
4:26:48 Dictionaries
4:27:22 Creating dictionaries
4:28:44 Accessing values in dictionaries
4:29:39 the dict() function
4:33:22 Accessing and updating values
4:35:14 Dictionary methods
4:41:54 Check if keys exist in a dictionary
4:42:50 More dictionary methods
4:45:49 delete dictionary items with del
3:47:33 Exercise 2
4:56:45 imports
5:02:23 absolute imports
5:06:40 Modules and packages
5:13:52 relative imports
5:20:25 Intro to the Python standard library
5:22:02 Working with files in Python
5:22:38 the open() function
5:23:45 writing to a text file
5:29:56 Reading files
5:32:09 DIfferent file open text modes
5:32:14 Error Handling in Python
5:32:38 Some common errors in Python
5:37:23 raising errors
5:42:52 try-except statements
5:59:35 Intro to classes and Objects
6:01:05 Creating classes
6:07:21 Class attributes
6:08:08 Creating Objects
6:08:43 Objects inherit class attributes
6:09:11 Creating methods
5:10:47 the self parameter
6:11:29 calling methods on objects
6:12:52 the __init__method
6:17:37 Another example of classes
6:25:54 Inheritance
6:49:51 the isinstance() function
6:51:37 is issubclass() function
6:52:37 Conclusion

SsaliJonathan
Автор

Thanks so much for getting me started with python.

stephenbitum
Автор

thx and big hug from brazil, you are a great person. peace god

jojoeyboy
Автор

Just started and I am gonna count the "Without further udos in this video"😂😂

hildahnagawa
join shbcf.ru