Email Address Generator Using Python

0

Source Code: 

  • firstname = input("Please Enter first name: ")

  • lastname = input("Please Enter last name: ")

  • DOB = input("Please Enter of birth(mmddyy): ")

  • address = firstname+lastname+DOB[4:8]+"@gmail.com"

  • print("Welcome "+firstname+"!")

  • print("Your New Email Address is :"+address)

 


Post a Comment

0Comments
Post a Comment (0)