Lab description: The first lab is for basic function of python and simple math testing.
source code:
width=17
height=12.0
delimiter=’.’
x=width/2
y=width/2.0
z=height/3
k=1 + 2 * 5
n=delimiter * 5
print(“The first width is “, x, “The second width is “, y, “The height is “, z, “The fuction is “, k,”The delimiter is “, n)
Leave a Reply