This is lab #1
Lab 1 is an introduction to the Python program and shows the user simple commands.
βββββββ-
>>> 1 + 1
2
>>> print βHello Motherβ
Hello Mother
>>> 1 + 1.2
2.2
>>> print hello
Traceback (most recent call last):
File β<pyshell#3>β, line 1, in <module>
print hello
NameError: name βhelloβ is not defined
>>>
ββββββββββ-
hello world
goodbye
βββββββββββ-