Complete Python Programming Masterclass Beginner to Advanced
Complete Python Programming Masterclass Beginner to Advanced, available at $109.99, has an average rating of 4.53, with 118 lectures, 10 quizzes, based on 9330 reviews, and has 29547 subscribers.
You will learn about Learn Proper Python Syntax Learn Basics of Programming with Python (Variables, Operators, Logic…) Develop Python Modules to Create Re-Usable Code Work with Python Loops to Repeat Blocks of Code Learn Object Oriented Python Programming Concepts This course is ideal for individuals who are Beginner Python Programmers or Programmers New to Python Looking to Learn Python Syntax It is particularly useful for Beginner Python Programmers or Programmers New to Python Looking to Learn Python Syntax.
Enroll now: Complete Python Programming Masterclass Beginner to Advanced
Summary
Title: Complete Python Programming Masterclass Beginner to Advanced
Price: $109.99
Average Rating: 4.53
Number of Lectures: 118
Number of Quizzes: 10
Number of Published Lectures: 109
Number of Published Quizzes: 10
Number of Curriculum Items: 128
Number of Published Curriculum Objects: 119
Original Price: $199.99
Quality Status: approved
Status: Live
What You Will Learn
- Learn Proper Python Syntax
- Learn Basics of Programming with Python (Variables, Operators, Logic…)
- Develop Python Modules to Create Re-Usable Code
- Work with Python Loops to Repeat Blocks of Code
- Learn Object Oriented Python Programming Concepts
Who Should Attend
- Beginner Python Programmers
- Programmers New to Python Looking to Learn Python Syntax
Target Audiences
- Beginner Python Programmers
- Programmers New to Python Looking to Learn Python Syntax
Python is used in thousands of applications around the world, by some of the most recognizable companies. Python is used for various types of applications, including;
-
Web Development
-
Scientific Computing
-
Education
-
Desktop GUIs
-
Software Development
-
Business Applications
Needless to say, Python is one of most sought after programming skills on the market.
WHAT YOU’LL LEARN IN THIS PYTHON COURSE
This Python course starts with the basics and by the end you’ll be mastering advance level Python concepts. Some of the topics include;
Python Programming Fundamentals
-
Python Syntax (How to write Python Code)
-
Use the Command Prompt to Write Python
-
Understanding Whitespace in Python Code
-
Python Variables
-
Python Data Types
-
Python Operators
-
Execute Python Code in the Python Shell and Write Re-Useable Code in the Python IDLE
-
Python Logical Statements (If…Else)
-
Python Loops (While, For Loops)
Python Intermediate/Advanced Topics
-
Python Lists, Dictionaries, Tuples and Sets (Collection Objects)
-
Gather Input from Users
-
Python Functions
-
Python Modules
-
Python Classes (Object Oriented Programming)
-
Create Custom Python Classes
-
Handling Files with Python
-
Error Handling
Throughout the course you will find quizzes to gauge your understanding of the material and build your confidence. The video lectures will walk you step by step through mastering key Python concepts, while each section will build upon the knowledge you gain from the previous section. Additional resources, including PDFs, completed Python files and web resources will provide you will additional information. All course material, including the video lectures are available for download so you can learn offline.
After you’ve mastered key Python programming concepts, you’ll find projects to challenge your understanding. Each project will give you an opportunity to put what you’ve learned to practice by creating games and interacting with business data using Python.
-
Create a Magic 8 Ball Game
-
Read and Write .CSV files
As you go through the course, participate in the QA section to ask questions, share what you’ve learned and interact with your instructor and other students. With Udemy’s 30 Day Money Back Guarantee, you’ll find comfort in learning how to program using Python. And, at the end of the course, you’ll receive a Certificate of Completion that you can print and proudly share with friends, co-workers and the world.
So, don’t lose another moment, Enroll Now and begin learning how to program with Python.
Course Curriculum
Chapter 1: Course Introduction
Lecture 1: Welcome
Lecture 2: Course Overview
Chapter 2: Getting Setup with Python
Lecture 1: Download Python
Lecture 2: Installing Python
Lecture 3: Confirm Python Installation
Lecture 4: Running Python Code with Command Line
Lecture 5: Python .py Files
Chapter 3: Variables and Types
Lecture 1: Python Variables
Lecture 2: More Python Variables
Lecture 3: Python Numbers
Lecture 4: Python Strings
Lecture 5: String Methods
Lecture 6: string Methods Reference
Lecture 7: Python Casting Data Types
Chapter 4: Python Operators
Lecture 1: Python Mathematical Operators
Lecture 2: Python Assignment Operators
Lecture 3: Python Comparison Operators
Lecture 4: Python Operators Reference
Chapter 5: Python Collections
Lecture 1: Python List Data Type
Lecture 2: List Constructor
Lecture 3: List Append Method
Lecture 4: More List Methods
Lecture 5: List Methods Reference
Lecture 6: Python Tuple Data Type
Lecture 7: List Type vs Tuple Type
Lecture 8: Python Set Data Type
Lecture 9: Set Methods
Lecture 10: Python Dictionary Data Type
Chapter 6: Python Shell and IDLE
Lecture 1: Working with Python Shell
Lecture 2: Working with Python Editor IDLE
Lecture 3: Python IDLE Shortcut Keys
Lecture 4: Python Whitespace
Lecture 5: Python Comments
Chapter 7: Python Modules
Lecture 1: Understanding Python Modules
Lecture 2: Importing Modules
Lecture 3: dir() Python Method
Lecture 4: help() Python Method
Lecture 5: Module Alias
Chapter 8: Python Program Flow
Lecture 1: If Condition Python Statements
Lecture 2: Elif Keyword
Lecture 3: If… Else Conditions
Lecture 4: AND Condition in an If Statement
Lecture 5: OR Condition in an If Statement
Lecture 6: While Loops
Lecture 7: break Keyword
Lecture 8: continue Keyword
Lecture 9: For Loops
Lecture 10: Looping through String Values
Lecture 11: Range Function in For Loops
Lecture 12: For Loop Else Statement
Chapter 9: Project #1 — Python Magic 8 Ball Game
Lecture 1: Project #1 Preview
Lecture 2: Project #1 – Python Magic 8 Ball Instructions
Lecture 3: Solution Step #1 — Setting up the Magic 8 Ball Responses
Lecture 4: Solution Step #2 — Capture User Question Input and Respond
Lecture 5: Solution Step #3 — Exit the App
Chapter 10: Working with Files
Lecture 1: Opening Text Files with Python
Lecture 2: Reading Text Files with Python
Lecture 3: Using a Loop to Read all Content in a Text File
Lecture 4: Writing to a Text File with Python
Lecture 5: Creating a Text File
Chapter 11: Project # 2 — Python and .CSV Files
Lecture 1: Project #2 Preview
Lecture 2: Project #2 – Reading/Writing .CSV File Instructions
Lecture 3: Solution Step #1 — .CSV Module
Lecture 4: Solution Step #2 — Read .CSV Files
Lecture 5: Solution Step #3 — Print .CSV
Lecture 6: Solution Step #4 — Write to .CSV Files
Lecture 7: BONUS SOLUTION — Filter .CSV Results
Chapter 12: Python OS Module
Lecture 1: Import the OS Module
Lecture 2: Get Current Working Directory with OS getdir() function
Lecture 3: List Directory Files with OS listdir() Function
Lecture 4: Change Working Directory with OS chdir() function
Lecture 5: Create Directory with OS makedirs() function
Lecture 6: Check if File Exists with isfile() function
Lecture 7: Deleting a File with Python
Chapter 13: Python Functions
Lecture 1: Creating a Python Function
Lecture 2: Calling a Python Function
Lecture 3: Passing Arguments to a Function
Lecture 4: Named Arguments
Lecture 5: Default Arguments
Lecture 6: Variable Scope in Functions
Instructors
-
Kyle Pew
Microsoft Certified Trainer – 1 Million+ Students -
Office Newb
Software Trainer
Rating Distribution
- 1 stars: 36 votes
- 2 stars: 82 votes
- 3 stars: 665 votes
- 4 stars: 3570 votes
- 5 stars: 4977 votes
Frequently Asked Questions
How long do I have access to the course materials?
You can view and review the lecture materials indefinitely, like an on-demand channel.
Can I take my courses with me wherever I go?
Definitely! If you have an internet connection, courses on Udemy are available on any device at any time. If you don’t have an internet connection, some instructors also let their students download course lectures. That’s up to the instructor though, so make sure you get on their good side!
You may also like
- Top 10 Video Editing Courses to Learn in November 2024
- Top 10 Music Production Courses to Learn in November 2024
- Top 10 Animation Courses to Learn in November 2024
- Top 10 Digital Illustration Courses to Learn in November 2024
- Top 10 Renewable Energy Courses to Learn in November 2024
- Top 10 Sustainable Living Courses to Learn in November 2024
- Top 10 Ethical AI Courses to Learn in November 2024
- Top 10 Cybersecurity Fundamentals Courses to Learn in November 2024
- Top 10 Smart Home Technology Courses to Learn in November 2024
- Top 10 Holistic Health Courses to Learn in November 2024
- Top 10 Nutrition And Diet Planning Courses to Learn in November 2024
- Top 10 Yoga Instruction Courses to Learn in November 2024
- Top 10 Stress Management Courses to Learn in November 2024
- Top 10 Mindfulness Meditation Courses to Learn in November 2024
- Top 10 Life Coaching Courses to Learn in November 2024
- Top 10 Career Development Courses to Learn in November 2024
- Top 10 Relationship Building Courses to Learn in November 2024
- Top 10 Parenting Skills Courses to Learn in November 2024
- Top 10 Home Improvement Courses to Learn in November 2024
- Top 10 Gardening Courses to Learn in November 2024