98.9k views
1 vote
Write a function randomLetter() that returns randomly a lower case letter. You should check the random module and in particular the choice function. You might also be interested in reading about ord() and chr() functions of python if you would like to use ascii. To check your function run it several times and check that it retuens different letters each time.

User Jfdimark
by
8.1k points

1 Answer

6 votes

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.

User Bonner
by
7.2k points