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
———————————-