The Modern Python 3 Bootcamp
The Modern Python 3 Bootcamp, available at $149.99, has an average rating of 4.73, with 384 lectures, 172 quizzes, based on 29835 reviews, and has 118315 subscribers.
You will learn about Learn all the coding fundamentals in Python! Work through nearly 200 exercises and quizzes! Learn about all of the latest features in Python 3.6 Use Python to create an automated web crawler and scraper Make complex HTTP requests to APIs using Python Master the quirks of Python style and conventions Really Really Understand Object Oriented programming in Python Learn testing and TDD (Test Driven Development) with Python Write your own Decorators and higher order functions Write your own Generators and other Iterators Confidently work with Lambdas! Master tricky topics like Multiple Inheritance and Polymorphism Build games with Python Build larger projects that span across multiple files Work with all the Python data structures: lists, dictionaries, sets, tuples, and more! Become an expert at list and dictionary comprehensions Master built-in python functions like zip and filter Handle errors and debug code Write your own custom modules Work with files, including CSV This course is ideal for individuals who are Anyone who wants to learn Python. or Anyone who is curious about data science, machine learning, or web development or Anyone who wants to get tons of practice with the interactive exercises. It is particularly useful for Anyone who wants to learn Python. or Anyone who is curious about data science, machine learning, or web development or Anyone who wants to get tons of practice with the interactive exercises.
Enroll now: The Modern Python 3 Bootcamp
Summary
Title: The Modern Python 3 Bootcamp
Price: $149.99
Average Rating: 4.73
Number of Lectures: 384
Number of Quizzes: 172
Number of Published Lectures: 376
Number of Published Quizzes: 171
Number of Curriculum Items: 556
Number of Published Curriculum Objects: 547
Original Price: $199.99
Quality Status: approved
Status: Live
What You Will Learn
- Learn all the coding fundamentals in Python!
- Work through nearly 200 exercises and quizzes!
- Learn about all of the latest features in Python 3.6
- Use Python to create an automated web crawler and scraper
- Make complex HTTP requests to APIs using Python
- Master the quirks of Python style and conventions
- Really Really Understand Object Oriented programming in Python
- Learn testing and TDD (Test Driven Development) with Python
- Write your own Decorators and higher order functions
- Write your own Generators and other Iterators
- Confidently work with Lambdas!
- Master tricky topics like Multiple Inheritance and Polymorphism
- Build games with Python
- Build larger projects that span across multiple files
- Work with all the Python data structures: lists, dictionaries, sets, tuples, and more!
- Become an expert at list and dictionary comprehensions
- Master built-in python functions like zip and filter
- Handle errors and debug code
- Write your own custom modules
- Work with files, including CSV
Who Should Attend
- Anyone who wants to learn Python.
- Anyone who is curious about data science, machine learning, or web development
- Anyone who wants to get tons of practice with the interactive exercises.
Target Audiences
- Anyone who wants to learn Python.
- Anyone who is curious about data science, machine learning, or web development
- Anyone who wants to get tons of practice with the interactive exercises.
Updated to include SQL + Python!
Welcome to the Modern Python 3 Bootcamp! I’ve launched my fair share of Udemy courses, but I’ve never done anything quite this crazy.
This course is a unique experience on Udemy. There are dozens of existing Python courses you can choose from, but this course is the only one that has nearly 200 interactive challenges you can complete right here in your browser. I didn’t just tack on a couple of exercises at the end; this course is fully built around the coding exercises. This course is all about getting you writing code ASAP, rather than sitting back watching a bunch of videos.
In development, I referred to this course as a hybrid between a typical Udemy course and an interactive Codecademy-style course. You get over 25 hours of in-depth videos and my dumb jokes along with meticulously created exercises and quizzes to test your knowledge as you go.
Many of the older Python courses still focus on Python 2. This course is all about writing the most modern, up-to-date Python code, so Python 3 was the obvious choice. The course covers all the latest additions and changes to the Python language. The course also places a large emphasis on thinking like a Python developer, and writing code the “Pythonic” way.
As for the curriculum, This course teaches all the key topics covered by other Python courses, but also covers more advanced topics like web scraping, crawling, and testing, just to name a few. Please feel free to explore the curriculum and watch some of the free preview videos!
Python is consistently ranked in either first or second place as the most in-demand programming languages across the job market. It has applications in data science, machine learning, web development, self-driving cars, automation, and many many other disciplines. There has never been a better time to learn it!
I’m spent years teaching people to program at in-person bootcamps in the San Francisco Bay Area. In recent years, I’ve started bringing my methods from the classroom to the online world. In my first year teaching online, I was selected as the Best Newcomer Instructor in the Udemy Instructor Awards 2015. I’m passionate about making the best possible online learning experiences that mirror my in-person courses.
If you want to take ONE COURSE to master Python take this course.
Course Curriculum
Chapter 1: Course Introduction
Lecture 1: Course Introduction
Lecture 2: Join The Community!
Lecture 3: Python3 vs. Python2
Lecture 4: How The Exercises Work
Lecture 5: Where Should You Start?
Lecture 6: How The Course is Structured
Chapter 2: MAC/LINUX Command Line Fundamentals
Lecture 1: Why Use The Command Line?
Lecture 2: Command Line Installation: MAC
Lecture 3: Absolute Paths and PWD
Lecture 4: Using CD
Lecture 5: Using LS
Lecture 6: Making Directories with MKDIR
Lecture 7: Creating Files with TOUCH
Lecture 8: Quick Activity: Salamanders and Frogs
Lecture 9: Moving and Renaming with MV
Lecture 10: Deleting Files with RM
Lecture 11: Deleting Directories (Plus Tangents on Permissions and MAN Pages)
Chapter 3: WINDOWS Command Line Fundamentals
Lecture 1: Why Do You Need The Command Line?
Lecture 2: Using Powershell
Lecture 3: Paths, LS, and PWD
Lecture 4: Using The CD Command
Lecture 5: OPTIONAL: Making Directories with MKDIR
Lecture 6: OPTIONAL: Making Files (it's…complicated)
Lecture 7: Creating a Touch Function
Lecture 8: OPTIONAL: Removing Files and Folders with RM
Chapter 4: MAC Python Setup
Lecture 1: Installing Python: MAC
Lecture 2: Optional: Installing Sublime Text
Lecture 3: Our First Python Program!
Lecture 4: SOLUTION
Lecture 5: Important Note on Print and the Python Interpreter
Chapter 5: WINDOWS Python Setup
Lecture 1: Installing Python On a PC
Lecture 2: Introducing Sublime Text
Lecture 3: Your First Python Program
Lecture 4: SOLUTION
Lecture 5: Important Note on Print and the Python Interpreter
Chapter 6: Numbers, Operators, and Comments
Lecture 1: Section Introduction/Objectives
Lecture 2: Numbers: Ints and Floats
Lecture 3: Numbers: Basic Math
Lecture 4: Quick Note: Comments
Lecture 5: Numbers: Weirder Operators
Lecture 6: Introduction to the Python Documentation
Chapter 7: Variables and Strings
Lecture 1: Variables and Data Types
Lecture 2: Introduction to Variables
Lecture 3: SOLUTION
Lecture 4: Variable Naming Restrictions and Conventions
Lecture 5: Data Types Overview
Lecture 6: What The Heck is Dynamic Typing
Lecture 7: The Special Value NONE
Lecture 8: Double Vs. Single Quotes
Lecture 9: SOLUTION
Lecture 10: String Escape Sequences
Lecture 11: SOLUTION
Lecture 12: String Concatenation
Lecture 13: SOLUTION
Lecture 14: String Formatting
Lecture 15: SOLUTION
Lecture 16: Strings and Indexes (Indicies?)
Lecture 17: Converting Data Types
Lecture 18: Building a Mileage Convertor With User Input
Chapter 8: Boolean and Conditional Logic
Lecture 1: Section Introduction and Objectives
Lecture 2: Getting User Input
Lecture 3: Intro to Conditionals
Lecture 4: SOLUTION
Lecture 5: SOLUTION
Lecture 6: Multiple Elifs
Lecture 7: A Word on Truthiness + A Quick Example
Lecture 8: The Joy of Comparison Operators
Lecture 9: Logical AND & OR
Lecture 10: SOLUTION
Lecture 11: LOGICAL NOT
Lecture 12: A Note on Is Vs. ==
Instructors
-
Colt Steele
Developer and Bootcamp Instructor
Rating Distribution
- 1 stars: 100 votes
- 2 stars: 208 votes
- 3 stars: 1474 votes
- 4 stars: 8517 votes
- 5 stars: 19538 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
- Best Cybersecurity Fundamentals Courses to Learn in December 2024
- Best Smart Home Technology Courses to Learn in December 2024
- Best Holistic Health Courses to Learn in December 2024
- Best Interior Design Courses to Learn in December 2024
- Best Nutrition And Diet Planning Courses to Learn in December 2024
- Best Yoga Instruction Courses to Learn in December 2024
- Best Stress Management Courses to Learn in December 2024
- Best Mindfulness Meditation Courses to Learn in December 2024
- Best Life Coaching Courses to Learn in December 2024
- Best Career Development Courses to Learn in December 2024
- Best Relationship Building Courses to Learn in December 2024
- Best Parenting Skills Courses to Learn in December 2024
- Best Home Improvement Courses to Learn in December 2024
- Best Gardening Courses to Learn in December 2024
- Best Sewing And Knitting Courses to Learn in December 2024
- Best Writing Courses Courses to Learn in December 2024
- Best Storytelling Courses to Learn in December 2024
- Best Creativity Workshops Courses to Learn in December 2024
- Best Resilience Training Courses to Learn in December 2024
- Best Emotional Intelligence Courses to Learn in December 2024