Homeworks, homeworks and homeworks

Lab # 1

EXPLANATION: In this lab will apply THE BASIC function such as print in order to show in the program.

STEPS:

1.- Go to python IDLE.

2.- In interactive mode type the next source codes:

3.- An error type:  This will happen when you type something wrong such as the next code:

print hello

The error happened because it does not have parenthesis which means the word hello is considered like an undefined syntax.

Source code:

print (1+1)

print “Hi Mom”

print “Hello”