Python For Kids (Part 12: "Hello World")
Kevin Thomas
Director of Test Automation and Author of the world’s most popular Reverse Engineering Tutorial
For a complete table of contents of all the lessons please click below as it will give you a brief of each lesson in addition to the topics it will cover. https://github.com/mytechnotalent/Python-For-Kids
Today we are going to revisit our "Hello World" program like we did back in lesson 3. This time we will be working with CORE Python.
In the first course we got very familiar with the Mu Editor. This course will work in a different mode within the editor.
If you are new to this course please visit lesson 2 where you can find out how to install the FREE Mu IDE by clicking on the link below.
STEP 1: Open Mu IDE
STEP 2: Click Mode
STEP 3: Click Python 3 & OK
STEP 4: Type Code
STEP 5: Click Save
STEP 6: Save File - main.py - Desktop
STEP 7: WITNESS OUR NEW HELLO WORLD PROGRAM!
At the end of the beginner course we worked with the REPL which is read, evaluate, print, loop with our talking robot. In this course we will use this to interact with our code.
Here we simply take advantage of one of Python's builtins called print where we are able to echo words to the terminal.
In the next lesson we debug our program.