Description
In this lab, I was given a simple assignment from the text book (pdf. file in my case) and was told to apply it onto idle, the python program. First, I entered three statements into the editor and right after I entered the three statements, I wrote the value of expression and the result was the answer given. Each expression was written separately.
Code
>>>width = 17
>>>height = 12.0
>>>delimiter = “.”
>>>width/2
>>>width/2.0
>>>height/3
>>>delimiter*5