Skip to content

Instantly share code, notes, and snippets.

Created February 17, 2014 23:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/9061337 to your computer and use it in GitHub Desktop.
Save anonymous/9061337 to your computer and use it in GitHub Desktop.
def begin():
print()
print("Please fill in the following, hit enter to confirm:")
print()
print("--- Personal details ---")
print()
user_names_firstname = input("Enter your first name: ")
user_names_middlename = input("Enter your middle name: ")
user_names_lastname = input("Enter your last name: ")
user_names_maidenname = input("Enter your maiden name: ")
user_names_nickname = input("Enter your nickname: ")
user_time_age = int(input("Enter your age: "))
user_time_dateofbirth_day = input("Enter the day of your birth (No. format): ")
user_time_dateofbirth_month = input("Enter the month of your birth (ABC format): ")
user_time_dateofbirth_year = input("Enter the year of your birth (No. format): ")
print()
print("--- Location details ---")
print()
user_location_cityofbirth = input("Enter city of birth: ")
user_location_countryofbirth = input("Enter country of birth: ")
user_location_cityofbirth = input("Enter current postal code: ")
user_location_city = input("Enter current city: ")
user_location_state = input("Enter current state/province: ")
user_location_country = input("Enter current country: ")
print()
print("--- Work ---")
user_work_currentjob = input("What is your current job: ")
user_work_previousjobs_list = input("List your previous jobs (Comma format): ")
print("--- Interests & hobbies ---")
print()
str = input("List your interests (Comma format): ")
user_interests_list = str
print()
print("Just completing some cool things...")
if user_time_age < 13:
user_time_age_type = "kid"
elif 13 <= user_time_age <= 19:
user_time_age_type = "teenager"
else:
user_time_age_type = "adult"
print()
print("Below is your autobiography that " + app_name + " just generated:")
print()
'Put stuff here'
print()
print("-------------------------------------------------------")
print()
print("Below is your autobiography that " + app_name + " just generated:")
print()
begin()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment