HOME > Development > Python 3 Fundamentals- Beginners Guide to Python Programming_1

Python 3 Fundamentals- Beginners Guide to Python Programming_1

  • Development
  • Apr 26, 2025
SynopsisPython 3 Fundamentals: Beginners Guide to Python Programming,...
Python 3 Fundamentals- Beginners Guide to Programming_1  No.1

Python 3 Fundamentals: Beginners Guide to Python Programming, available at $49.99, has an average rating of 4.9, with 49 lectures, based on 19 reviews, and has 1244 subscribers.

You will learn about Learn Python, a powerful modern language, from scratch. No prior programming experience is necessary. Build a solid foundation of Python and Programming that will help you build your own programs. Become excellent at using the IntelliJ IDEA. Develop highly transferable coding problem solving skills. Master the art of problem solving when it comes to Python Programming. By understanding what obstacles you may face and the many ways to research and find solutions for each. Flex your Programming muscles by completing challenges presented to you every video. Enhancing your learning experience and adding your own flavor into the project. This course is ideal for individuals who are Aspiring Python programmers. or Complete beginners who are willing to work hard. or Some programming experience helpful, but not required. It is particularly useful for Aspiring Python programmers. or Complete beginners who are willing to work hard. or Some programming experience helpful, but not required.

Enroll now: Python 3 Fundamentals: Beginners Guide to Python Programming

Summary

Title: Python 3 Fundamentals: Beginners Guide to Python Programming

Price: $49.99

Average Rating: 4.9

Number of Lectures: 49

Number of Published Lectures: 49

Number of Curriculum Items: 49

Number of Published Curriculum Objects: 49

Original Price: $119.99

Quality Status: approved

Status: Live

What You Will Learn

  • Learn Python, a powerful modern language, from scratch. No prior programming experience is necessary.
  • Build a solid foundation of Python and Programming that will help you build your own programs.
  • Become excellent at using the IntelliJ IDEA.
  • Develop highly transferable coding problem solving skills.
  • Master the art of problem solving when it comes to Python Programming. By understanding what obstacles you may face and the many ways to research and find solutions for each.
  • Flex your Programming muscles by completing challenges presented to you every video. Enhancing your learning experience and adding your own flavor into the project.
  • Who Should Attend

  • Aspiring Python programmers.
  • Complete beginners who are willing to work hard.
  • Some programming experience helpful, but not required.
  • Target Audiences

  • Aspiring Python programmers.
  • Complete beginners who are willing to work hard.
  • Some programming experience helpful, but not required.
  • This course is aimed at complete beginners who have never programmed before, as well as existing programmers who want to increase their career options by learning Python

    Python is one of the most popular programming languages in the world. Tons of Huge companies like Google use it in mission critical applications like Google Search. It’s the number one language choice for machine learning, data science and artificial intelligence.

    Python is an incredibly efficient language: your programs will do more in fewer lines of code than many other languages would require. It’s design philosophy emphasizes code readability. Your code will be easy to read, easy to debug, and easy to extend and build upon compared to other languages.

    To get those high paying jobs you need an expert knowledge of Python, and that’s what you will get from this course. By the end of the course you’ll have a solid foundation in Python programming. And yes, this applies even if you have never programmed before. With the right skills which you will learn in this course, you can become employable and valuable in the eyes of future employers.

    Section 1 – Introduction & Setup:

    In the first section we’re going to download Python on our computer (Windows, MAC) and set it up. We’ll then download IntelliJ IDEA a very versatile IDE to use for multiple languages and especially Python. We’ll also set up Python SDK so we can create and run Python code.

    Section 2 – Getting Started In Python:

    We’ll create our first Python program. We’ll learn about printing in python and learn what strings are and how we can slice them in order to extract certain data from them. We’ll also understand how strings are a sequence of characters and that we can actually index through those characters, so this will be a small introduction into Lists.

    Section 3 – First Steps In Python:

    In this section we’re going to learn about code blocks and how we can use conditional statements to execute certain code only in certain conditions. We’ll learn how we can use the Debugger in IntelliJ and understand how important it is. We’ll also delve into testing operators, Boolean values and Truth Tables. Finally we’ll see what complex expressions are and how we can use them to our advantage to make code more readable.

    Section 4 – Loops In Python:

    This will probably be the most fun section. We’ll delve into Loops, for loops and while loops and learn the difference between them and when to use each. We’ll learn different tricks to use in loops such as break and continue and apply those tricks to create fun games. We’ll also learn Binary Search Algorithm that will introduce a bit of intelligenceto our program.

    What You Will Learn In This Course:

    1. Download and install Python

    2. Download and set up IntelliJ IDEA as your IDE

    3. Set up Python SDK

    4. Learn how print works in Python

    5. Learn how stings work in Python

    6. Understand what special characters are in Python

    7. Understand how to index through strings

    8. Learn how to slice strings to extract data

    9. How to using string operators

    10. Create conditional statements

    11. Become an expert in complex expressions

    12. Learn about Boolean values

    13. Understand what Truth tables are

    14. Learn for loops loops

    15. Learn While Loops

    16. Delve deeper into loops and use them in new games

    Course Curriculum

    Chapter 1: Introduction & Setup

    Lecture 1: Python for Windows/Mac

    Lecture 2: Downloading IntelliJ IDEA for Windows/Mac/Linux

    Lecture 3: Setting up IntelliJ IDEA

    Chapter 2: Getting Started In Python

    Lecture 1: Our First Python Program

    Lecture 2: Printing in Python

    Lecture 3: Strings in Python

    Lecture 4: Special Characters

    Lecture 5: Variables and Types

    Lecture 6: Something To Watch Out For

    Lecture 7: Numbers Operators

    Lecture 8: Operator Precedence

    Lecture 9: String Data Type

    Lecture 10: Negative Indexing in Strings

    Lecture 11: Slicing Strings

    Lecture 12: Slicing with Negatives

    Lecture 13: Using a Step while Slicing

    Lecture 14: Slicing Backwards

    Lecture 15: String Operators

    Lecture 16: Printing Numbers

    Chapter 3: First Steps In Python

    Lecture 1: Introduction to Blocks and Statements

    Lecture 2: if Statements

    Lecture 3: elif Statements

    Lecture 4: Using the Debugger in IntelliJ

    Lecture 5: Deeper Into Conditional Statements

    Lecture 6: Debugging if, elif and else

    Lecture 7: Adding a Second Guess

    Lecture 8: Testing Operators

    Lecture 9: If In A Different Way

    Lecture 10: Complex Expressions using and, or

    Lecture 11: Simplify Chained Comparison

    Lecture 12: Boolean Values (True and False)

    Lecture 13: Truth Value Testing

    Lecture 14: in and not in

    Chapter 4: Loops In Python

    Lecture 1: Introduction To for loops

    Lecture 2: Debugging a for loop

    Lecture 3: for loops over a Range

    Lecture 4: Deeper into Ranges

    Lecture 5: Nested for loops

    Lecture 6: Using continue in for loops

    Lecture 7: Using break in for loops

    Lecture 8: Why use None

    Lecture 9: Introduction To while loops

    Lecture 10: Deeper into while loops

    Lecture 11: Break in a while loop

    Lecture 12: Random Number Generator and Importing

    Lecture 13: High-Low

    Lecture 14: Completing our Game

    Lecture 15: Else statements in Loops

    Lecture 16: Else in High-Low

    Instructors

  • Python 3 Fundamentals- Beginners Guide to Programming_1  No.2
    Michael Murr
    Software Engineer :: Game Developer :: Entrepreneur
  • Rating Distribution

  • 1 stars: 0 votes
  • 2 stars: 0 votes
  • 3 stars: 0 votes
  • 4 stars: 6 votes
  • 5 stars: 13 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!