Advertisement
elena_gancedo

My_first_test

Jun 22nd, 2019
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 1.39 KB | None | 0 0
  1. # Access form
  2. print ("THIS IS THE SERVICE ACCESS FORM: ")
  3. question1 = input("1-Is this the first time you've used this service? > ")
  4. if question1 == "yes" or question1 == "no":
  5.    print("Go to question 2")
  6. else:
  7.    print("If you've already used the entrepreneurship service go to question 14")
  8. question2 = input("2-Have you created a company or are you registered as a freelancer? > ")
  9. if question2 == "yes":
  10.    print("Go to Business Form and answers the questions 3 to 6")
  11. elif question2 == "no":
  12.    print("Go to Citizen's Form and answers the questions 7 to 13")
  13. else:
  14.    print("Only yes/no")
  15. # Business Form
  16. print ("Business form (only for freelancer):")
  17. q1 = input("3-Company name: > ")
  18. q2 = input("4-Tax identification number: > ")
  19. q3 = input("5-Company email: > ")
  20. q4 = input("6-Company telephone number: > ")
  21. print("Go to question 12")
  22. # Citizen's Form
  23. print ("Citizen's form:")
  24. q5 = input("7-First and last name: > ")
  25. q6 = input("8-Identification card number: > ")
  26. q7 = input("9-Telephone number: > ")
  27. q8 = input("10-Email: > ")
  28. q9 = input("11-Do you live in this municipality?: > ")
  29. if q9 == "yes":
  30.    print("Go to question 13")
  31. elif q9 == "no":
  32.    print("Go to question12")
  33. else:
  34.    print("Only yes/no")
  35. q10 = input("12- Where's your regular residence?: > ")  
  36. q10 = input("13- Your idea or business activity: > ")
  37. print ("Help:")
  38. q9 = input("14-How can we help you? > ")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement