EMT1111

i opened python and greated a new script and started to type down what the excerise problems after i did that i ran the moclude and type the problems on the orginal page and it gave me the outcome

width = 17
height = 12.0
delimiter =’.’

Python 3.3.2 (v3.3.2:d047928ae3f6, May 16 2013, 00:03:43) [MSC v.1600 32 bit (Intel)] on win32
Type “copyright”, “credits” or “license()” for more information.
>>> ================================ RESTART ================================
>>>
>>> width/2
8.5
>>> width/2.0
8.5
>>> height/3
4.0
>>> 1+2*5
11
>>> delimiter*5
‘…..’
>>>