Python for Absolute Beginners Series #4

In this video, I introduce functions. Functions are similar to a variable in that both assign a value to something. x = ‘slow and steady wins the race.’ Here x is an example of a variable. A function is different because it’s a placeholder for an action. def square(): beeli.forward(100) beeli.left (90) beeli.forward (100) beeli.left(90)…

Python for Absolute Beginners Series #3

In this video of Python for Absolute Beginners, the concept of variables is introduced. Variables are ways to make your life as a programmer, yes you’re a programmer now, easier. You can assign different values to variables and make coding more efficient. Instead of having to write out a long sentence, assign that value to a…

Python for Absolute Beginners Series #2

In this video of Python for Absolute Beginners, we learn two important things. How to enter a code that assigns a shape, either turtle or square, to the turtle icon. How to edit previously written code in trinket.io. (Additionally, if you don’t want to download Python you can use trinket.io to practice coding.) I also mention…

Python For Absolute Beginners

If you’re similar to me, filled with curiosity and fascinated by how the world works, there’s a high likelihood you’ve been wanting to get into coding. The world of coding is enormous in possibilities and demand, growing every day. This vast horizon of possibility can be daunting. It’s true, there’s a lot you don’t know…