When we generate random data, sometimes there is a need to generate random names, like full names, first names and last names. We can achieve this with the names library. You can also specify the gender of the name. Let’s see some examples:
For example:
pip install names import names names.get_full_name()
'Clarissa Turner'
names.get_full_name(gender='male')
'Christopher Keller'
names.get_first_name()
'Donald'
names.get_first_name(gender='female')
'Diane'
names.get_last_name()
'Beauchamp'