Final answer:
To write a function randomLetter() that returns a randomly generated lowercase letter in Python, you can use the built-in random module and its choic () function.
Step-by-step explanation:
To write a function randomLetter() that returns a randomly generated lowercase letter in Python, you can use the built-in random module and its choice () function. Here's an example:
import random
def randomLetter():
letters = 'abcdefghijklmnopqrstuvwxyz'
return random.choice(letters)
You can then call the randomLetter() function multiple times to check that it returns different letters each time.