Define a function called myfunc that takes in a kwargs string, and returns a matching string where every even letter is uppercase, and every odd letter is lowercase.
a) myfunc('hello')
b) myfunc('Python')
c) myfunc('world')
d) myfunc('programming')