Exercises
Create a new file called function_exercises.py
and do the following:
Create a function
rect_perimeter
that takes two arguments,length
&width
and returns the perimeterCreate a function
rect_area
that takes two arguments,length
&width
and returns the area.Create a function
super_hi
that takes a name as an argument and returns 'Hi' plus the name in all capital letters For e.g.super_hi('Joanna')
returns HI JOANNA,super_hi('Safiya')
returns HI SAFIYA. Use the functionupper()
on a string, e.g.'test'.upper()
.
Last updated