Python Programming for Beginners - Beginners Can Learn to Code in Python 3 with Simple and Fun Hands On Videos
Do you want to learn to code? Maybe you are interested in programming as a career or a hobbyist who wants to create code for your own projects? Or, maybe you’re a parent with a kid who would love to write code. If so then this is the course you're looking for. This course is designed to teach Python programming to absolute beginners. Kids as young as 5th grade have completed this entire course successfully.
Python Programming for Beginners - Beginners Can Learn to Code in Python 3 with Simple and Fun Hands On Videos
Do you want to learn to code? Maybe you are interested in programming as a career or a hobbyist who wants to create code for your own projects? Or, maybe you’re a parent with a kid who would love to write code. If so then this is the course you're looking for. This course is designed to teach Python programming to absolute beginners. Kids as young as 5th grade have completed this entire course successfully.
Following my step-by-step videos you will write fun and entertaining programs – and at the same time gain core programming skills. This course is loaded with 10 hours of fun hands-on examples and challenges.
You’ll make your computer talk, draw colorful 2D graphics, and we’ll cap off the course by creating an arcade style space game – complete with animation, keyboard controls, and sound effects. That's not all with over 140 lectures, challenges, and solutions there are many more cool programs you will create. All you need is a Mac or PC and a little curiosity. At the end of this course, you will have gained basic programming skills that you can continue to build on.
Python is One of the Most Popular Programming Languages
Python is one of the top programming languages in use. Companies like Netflix, Google, Instagram, and Facebook all use Python. Many universities now teach Python in their introductory computer science classes. Python is even used in some college science classes such as Physics for simulations. If you want to pursue a career in software development, this course is a great first step into programming. Or, you may just want to learn as a hobby or for fun to express your creativity in your own projects.
30 Day Money Back Guarantee
This course includes a 30-day 100% money back guarantee. So, what are you waiting for? Sign up and start your programming journey right now.
Watch this video for a quick introduction of the course. You will get a glimpse of who this course is for and the fun projects you will create.
Watch this video to learn more about the instructor.
After watching this video, you will understand the course outline and topics that will be covered.
In this lecture, I give you a few tips to get the most out of this cource and make the most of your learning experience.
After this lecture, you will have downloaded the software needed for this course.
Watch this lesson to install and setup Thonny - the Python editor we will be using throughout the course.
After this lecture, you will know how the basic parts of Thonny and will run you first Python program
After completing this lecture, you will know the basic parts of a computer and what they do.
After this lecture, you will know the definition of software.
Watch this video for a quick review of hardware vs. software.
Read this article for an overview of this section of the course.
After completing this lecture, you will be able to write text to the shell window using the print() function.
After completing this lecture, you will know how to include notes or comments in your program.
After this lecture, you will know how to include even more special characters in your strings.
After this lecture, you will know how to write a program creates audio output. You will learn how to make you computer speak!
After this lesson, you will have written a program on your own to list your favorite superheroes.
This lecture shows one solution to Challenge 1.
This lesson introduces the next challenge - drawing a triangle with text characters.
In this lesson I go over the previous challenge.
Watch this lesson to get instructions for Challenge 3.
This video shows the solution for challenge 3.
This lesson gives you another output challenge.
Watch this video to see how to write the program for challenge 4.
Try this fun challenge and have Python recite poetry!
This is the complete solution to challenge 5.
Let's learn about variables. This lecture introduces variables and explains how we use them to store data in the computer's memory.
In this lesson you will write your first Python program using variables.
After this lecture you will know how to get information entered by the user from the keyboard.
Learn how to format text to include the value in a variable to display a custom message.
In this example, you will learn how to use variables to replace words in a sentence.
Make your computer speak. After watching this video you will be able to create Python programs that talk using a text to speech module.
In this lecture, I introduce your next challenge. Creating a simple word substitution game. Try this challenge and play the game with your family and friends!
In this video, I show the solution for this challenge.
After this video you will know what an expression, operator, and operand are.
In this lesson you will get hands on practice doing calculations with math expressions in the shell.
Learn about the modulus operator and some of it's helpful properties.
In this lesson, we experiment with strings and operators to see how we can multiply and add strings.
A quick recap of order of operations and a handy cheat sheet.
In this lecture, I will show you how to use variables in expressions to create a simple program to calculate the area of a rectangle from user input.
In this lecture, we will create a simple program to calculate the area of a triangle using values entered from the keyboard.
Practice using math expressions in Python.
Walk thru the the solution to challenge 7.
This video has the instructions for programming challenge 8.
Solution to programming challenge 8.
After this lecture, you will know the definition of a list in Python
You will learn how to create and print a list to the shell in this lecture.
After this lecture, you will know how to access a single item from a list.
Read this article to learn how you can change the values of items using their indexes.
Learn how to count the number of items in a list.
In this lesson, you will learn how to add additional items to a list that has already been created.
Learn how to make new lists from other lists by combining them.
In this lesson you will learn what multiplication of a list does.
In this lesson, you will learn how to remove an item from a list.
In this lesson you will learn how to remove a value from a list using it's position.
In this lesson you will learn how to count the number of times a value appears in a list.
After this lecture, you will know what a tuple is and how it is different to a list.
In this lesson you will practice creating and working with tuples.
This lecture explains programming challenge 9.
In this lesson, I solve programming challenge #9.
In this lecture, you will get your next challenge - converting the heroes and villains challenge to use tuples.
This lesson presents the solution to programming challenge 10.
After this lecture, you should understand how to plot points in the Turtle graphics window.
In this lecture you will learn how to draw a square with Python turtle graphics.
Read this lesson to learn the valid values you can use when setting the turtle's speed.
Watch this lesson to get you next drawing challenge.
In this lecture, I go over the solution to challenge 11.
Learn how to move your Turtle around the screen with left, right, forward, and backward functions.
In this lecture, I give you your next challenge to practice moving the turtle on your own.
In this lecture I cover the solution to Challenge 12.
Watch this video to learn how to draw circles with the Turtle.
In this video, you will learn how to fill shapes with solid colors.
After this lecture, you will know how to draw polygons or irregular shapes.
In this video, you will learn handy functions to erase and reset your turtle drawings.
In this video I give your next challenge - drawing an emoji with Turtle Graphics.
This video covers the solution to Challenge #13.
In this challenge you will use the turtle to draw a house and tree using everything you've learned so far.
Watch this video to see my solution to challenge 14.
In this lesson you will learn how to draw text in your Turtle window.
Watch this video to get your next practice challenge - writing your name with Turtle graphics.
In this video I cover the solution to challenge 15.
Watch this video to learn how you can get input from the user using Turtle graphics.
Watch this video to get your next challenge - getting practice with numinput() and textinput()
In this video I show the solution to challenge 16.
In this video I show you where you can find documentation for the Turtle graphics library.
In this lecture you will learn about boolean variables and expressions which you will use to write code that makes decisions.
Watch this lecture to get hands-on practice using boolean comparison operators.
After this lecture, you will be able to have your code print different messages based on a person's age that they enter from the keyboard.
After this lecture you will know how to use if statements to handle user input from input functions in Turtle graphics.
In this lecture you will learn how to create complex boolean expressions using AND and OR operators.
In this lecture, you will get hands-on practice with the AND and OR operators to write different messages based on different variables.
Create a simple park admission calculator using if statements.
OpenCourser helps millions of learners each year. People visit us to learn workspace skills, ace their exams, and nurture their curiosity.
Our extensive catalog contains over 50,000 courses and twice as many books. Browse by search, by topic, or even by career interests. We'll match you to the right resources quickly.
Find this site helpful? Tell a friend about us.
We're supported by our community of learners. When you purchase or subscribe to courses and programs or purchase books, we may earn a commission from our partners.
Your purchases help us maintain our catalog and keep our servers humming without ads.
Thank you for supporting OpenCourser.