Lesson 8.

Today we will be learning some Python code!

Python is a common coding language used mostly in Linux programs. We will learn just a little just so you can get the point on how hard it is to code a large program.

 

 

The first step is to import common Python modules.:

 

import os

import sys

import time

 

There is more but you usually have to install them separately. Also a little hint, Python is mostly lower-case letters.

Now lets get into some other stuff. 

print('Hi. You are using all about robots!')

Or

print("Hi. You are using all about robots!")

Look and see the " and the ' .  You NEED to have them in the script or it will think its a variable that isn't appearing.

So like this

print('hi')

time.sleep(1)

The time.sleep makes it so you can separate the text by seconds.

Now test your skills with this link and I bet  you will do great!

When your done you can send it to: greenstamp25@outlook.com