second last name

This commit is contained in:
Xaloc 2020-11-25 11:48:48 +01:00
parent 4583a3dc47
commit 73b22137e8
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ def allcaps(x):
firstName = clean_input(input("First Name: "))
lastName = clean_input(input("Last Name: "))
middleName = clean_input(input("Middle Name: "))
middleName = clean_input(input("Middle Name (or second last name): "))
nickName = clean_input(input("Nick Name: "))
birthDate = clean_input(input("Birth Date (DDMMYYYY): "))
day,month,year_long,year_short = extract_date(birthDate)