#Start up
print("Hello")
#Start up confirmation
print("Do you want to creat a account (y/n)")
startcheck = input()
if startcheck == "y":
print("Beging account creation")
else:#Exit program
print("Error System failed - Reset required")
exit(1)
print()
input("Enter to Continue")
print("************************************")
print()
#Firstname
print ("What is your firstname?")
firstname = input ()
#Check that the firstname is correct x2
print("To confirm your firstname is" ,firstname.upper() ,"(y/n)")
firstnamecheck = input()
if firstnamecheck == "y":
print("Continuing")
else:
print ("Plese re-atempt entering your firstname")
print ("What is your firstname?")
firstname = input ()
print("To confirm your firstname is" ,firstname.upper() ,"(y/n)")
firstnamecheck = input()
if firstnamecheck == "y":
print("Continuing")
else:#Exit program
print("Error System failed - Reset required")
exit(1)
#Firstname confirmation
print ("Your firstname is, " ,firstname.upper())
#Gap between
print()
input("Enter to Continue")
print("************************************")
print()
#Surname
print ("What is your surname?")
surname = input ()
#Check that the Surname is correct x2
print("To confirm your surname is" ,surname.upper() ,"(y/n)")
Surnamecheck = input()
if Surnamecheck == "y":
print("Continuing")
else:
print ("Plese re-atempt entering your surname" ,firstname.upper())
print ("What is your surname?")
surname = input ()
print("To confirm your surname is" ,surname.upper() ,"(y/n)")
Surnamecheck = input()
if Surnamecheck == "y":
print("Continuing")
else:#Exit program
print("Error System failed - Reset required")
exit(1)
#Surname confirmation
print ("Your surname is, " ,surname.upper())
#Gap between
print()
input("Enter to Continue")
print("************************************")
print()
#Initials
print(" " , )
print("Hello" , firstname.upper() , surname.upper())
print("Your initials are:" ,firstname[0] ,surname[0] ,"The program will call you this from now")
#Gap between
print()
input("Enter to Continue")
print("************************************")
print()
#Age
print ("How old are you?",firstname[0],surname[0])
age = input ()
#Check that the age is correct x2
print("To confirm your age is" ,age ,"(y/n)")
agecheck = input()
if agecheck == "y":
print("Continuing")
else:
print ("Plese re-atempt entering your age" ,firstname[0] ,surname[0])
print ("What is your age?")
age = input ()
print("To confirm your age is" ,age ,"(y/n)")
agecheck = input()
if agecheck == "y":
print("Continuing")
else:#Exit program
print("Error System failed - Reset required")
exit(1)
#Age confirmation
print()
print ("You are", age, "years old")
#Gap between
print()
input("Enter to Continue")
print("************************************")
print()
#promt fror Entering username configeration stage
print("Entering username configeration stage")
#Gap between
print()
input("Enter to Continue")
print("************************************")
print()
print("Your Username is your age folowed by the first 3 letters of your firstname and your surname")
print("")
print("Your username is")
Username = age, firstname[0:3], surname[0:3]
print(Username)
```
Hello
Do you want to creat a account (y/n)
y
Beging account creation
Enter to Continue
************************************
What is your firstname?
Charlie
To confirm your firstname is CHARLIE (y/n)
y
Continuing
Your firstname is, CHARLIE
Enter to Continue
************************************
What is your surname?
Lamb
To confirm your surname is LAMB (y/n)
y
Continuing
Your surname is, LAMB
Enter to Continue
************************************
Hello CHARLIE LAMB
Your initials are: C L The program will call you this from now
Enter to Continue
************************************
How old are you? C L
12
To confirm your age is 12 (y/n)
y
Continuing
You are 12 years old
Enter to Continue
************************************
Entering username configeration stage
Enter to Continue
************************************
Your Username is your age followed by the first 3 letters of your first name and your surname
Your username is
('12', 'Cha', 'Lam')