Lab 1

It was really easy I don’t know why, I didn’t do it before.Lab1

width = 17
height = 12.0
delimiter = ‘.’
print (type (width))
print (type (height))
print (type (delimiter))
width/2
print (width/2)
width/2.0
print (width/2.0)
height/3
print (height/3)
1 + 2 * 5
print (1 + 2 * 5)
delimiter * 5
print (delimiter * 5)
print (type (width/2))
print (type (width/2.0))
print (type (height/3))
print (type (1 + 2 * 5))

Leave a Reply

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