Lab 1

Lab Description: Completed exercise 3 in chapter 2 of Python. I opened Python GUI and simply entered all designated values and pressed enter. I then entered all  listed equations to see if they matched my results that I did beforehand. They all did.LAB 1

>>> width = 17

>>> height = 12.0
>>> delimeter = ‘.’
>>> width/2
8.5
>>> width/2.0
8.5
>>> height/3
4.0
>>> 1 + 2 * 5
11
>>> delimeter * 5
‘…..’
>>>

Leave a Reply

Your email address will not be published. Required fields are marked *