Skip to content

Latest commit

 

History

History
24 lines (23 loc) · 532 Bytes

README.md

File metadata and controls

24 lines (23 loc) · 532 Bytes

Initial-Adder

A super simple python script that takes a file containing a list of names (either first or last names) and prepends the letter a-z to each name in the list. A list of 10 names will become 260.

Example:

asmith
bsmith
csmith
dsmith
.
.
.
zsmith

You can switch "letter" and "name" on line 11 (prepended_names = letter + name) to append the initial to the name.

Example:

smitha
smithb
smithc
smithd
.
.
.
smithz