Advertisement
Guest User

Untitled

a guest
Dec 13th, 2019
419
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 24.55 KB | None | 0 0
  1. #CHOOSE WHICH CITY TO LIVE IN
  2.  
  3. #The attributes for each city are defined
  4. athens = ("This city is not a cheap city, but comparing to others in Europe the cost of life is interesting. You can buy a bottle of water with less than 50 cents of Euro. And to have a nice meal here can cost between 5 and 10 euros. Besides, it is very common at restaurants to offer free water and sometimes free dessert. Apartment rentals are also cheap comparing to capitals like Paris, and even cities in Brazil, like São Paulo and Rio, and, in general, there are not big social differences. I know, for instance, people working as maid at hotels and living in a very good apartment in a noble area of the city.\n\n")
  5. telaviv = ("Some people see locals as rude. They really aren't, just indifferent to the lives of others, there is no intentional rudeness, as once you let them know you are to be taken seriously, they do it. If you don't stand up for yourself, people will assume you like being walked all over and will do it. So confidence is a big key thing to surviving here.\n\n")
  6. macao = ("I love this city because life here is simple:  No traffic, less pollution, no intermittent internet connection, and most importantly, it is only a two-hour plane ride away from another lovely country, the _________.\n\n")
  7. buenosAries = ("This city was built during waves of mass immigration from Europe in the 19th and 20th centuries, and this history gives it a cosmopolitan culture. The city’s architecture is a showcase for a mix of Spanish colonial and Italianate styles, art nouveau, art deco, neogothic and French Bourbon.\n\n")
  8. mumbai = ("Shopping in this city is one thing you can enjoy to the fullest. Street shopping is something which everybody loves.  From clothes, accessories, footwear, bags etc, you might find a lot of things which you are looking for at dirt cheap rates. Famous international brands such as Zara, H&M etc have their shops here in _______.\n\n")
  9. rome = ("There are a lot of people in _____. It’s a large city with a lot of traffic. I am fascinated by the many small cars, scooters, electric bikes and people who drive/ride them.  Scooters are very popular and at rush hour you will see men and women in suits and dresses weaving in and out of traffic, missing buses by a few inches with seemingly no fear. \n\n")
  10. barcelona = ("You’ll fall in love with this city very soon especially if you’re a connoisseur of great food. There are excellent restaurants all over the city. The city loves to dine so much that most businesses and offices close two hours a day just to take lunch. The city boasts the freshest of seafood in the world and pastry shops are plentiful. You should be a happy person even if you do nothing but eat in this city.\n\n")
  11. aarhus = ("A bustling, cosmopolitan city with something to offer everyone, the second largest city of the countries is a fantastic place to live for both locals and expatriates alike. This city offers an exceptionally high standard of living and is very safe.\n\n")
  12. copenhagen = ("This city is on the top of the list for foreigners who want to spend a few months (or even years) in Scandinavia’s coolest country, which is why it has become a multicultural city.\n\n")
  13. oslo = ("This city is pretty much a work in progress: cranes keep appearing, the architecture keeps evolving, the skyline keeps changing.\n\n")
  14. hamburg = ("Perhaps one of the most important ways the city is a great and interesting place to live is that the city has been dubbed one of the happiest regions in its country.\n\n")
  15. paris = ("his city has so much to offer that you’ve probably thought about relocating. Here, Michelin-star restaurants stand next to historic cafés and first-class museums are just a brisk walk away from well-stocked flea markets. \n\n")
  16. madrid = ("Bathed in sunshine most of the year and host to an exuberant 24-hour party scene. Add to this a high standard - and low cost - of living, plus a resurgent property market offering investment opportunities and this city is an inviting prospect.\n\n")
  17.  
  18.  
  19. #hotCities is a list for the cities where the average annual temperature is above 14 degrees Celsius
  20. hotCities = ["Macao", "Buenos Aries", "Mumbai", "Tel Aviv", "Rome", "Athens", "Barcelona"]
  21.  
  22. #coldCities is a list for the cities where the average annual temperature is below 14 degrees Celsius
  23. coldCities = ["Copenhagen", "Aarhus", "Oslo", "Hamburg", "Paris", "Madrid"]
  24.  
  25. #bigCities is a list for the cities with a population of more than 1 million
  26. bigHotCities = ["Barcelona", "Rome", "Mumbai", "Buenos Aries"]
  27.  
  28. bigColdCities = ["Hamburg", "Paris", "Madrid"]
  29.  
  30. #smallCities is a list for the cities with a population of less than 1 million
  31. smallHotCities = ["Athens", "Tel Aviv", "Macao"]
  32.  
  33. smallColdCities = ["Copenhagen", "Aarhus", "Oslo"]
  34.  
  35. ##############################################################################################
  36. #The empty list where I can add cities depending on the users choice.
  37. cities = []
  38.  
  39. #Printing what the program is about
  40. print("Choosing which city to live in!")
  41.  
  42. #The user will have to press enter to begin
  43. input("\nPress enter to begin finding the city that is best suited for you! \n")
  44.  
  45. ################################################################################################
  46. print("1st question:")
  47.  
  48. #Asking the first question, and getting the input from the user
  49. answer1 = input("Do you prefer a generally hot or cold climate? Answer 'hot' or 'cold', or if you have no preference, press enter to move on to the 2nd question:  \n")
  50.  
  51. #Defining a list with possible answers
  52. q1Answers = ["HOT", "COLD", ""]
  53.  
  54. #Checking if the user has typed in a valid answer
  55. while True:
  56.     if answer1.upper() in q1Answers:
  57.         break
  58.     else:
  59.         answer1 = input("Please enter either 'hot', 'cold', or press enter to move on to the 2nd question: \n")
  60.        
  61. #Getting the users respone and saving it, so I can use it in question 2.
  62. if answer1.upper()== ("HOT"):
  63.     print("\nNice choice! \n\n")
  64.     input("Press enter to move on to the 2nd question! \n\n")
  65.    
  66. elif answer1.upper()== ("COLD"):
  67.     print("\nNice choice! \n\n")
  68.     input("Press enter to move on to the 2nd question! \n\n")
  69.    
  70. else:
  71.     answer1 == ("")
  72.     input("\n Alright! Press enter to move on to the 2nd question! \n\n")
  73.    
  74. ##################################################################################################################
  75. print("2nd question:")
  76.  
  77. #Asking the first question, and getting the input from the user
  78. answer2 = input("Do you prefer a big city, or a smaller city? Answer 'big' or 'small', or if you have no preference, press enter to move on to the 3rd question:  \n")
  79.  
  80. #Defining a list with possible answers
  81. q2Answers = ["BIG", "SMALL", ""]
  82.  
  83. #Checking if the user has typed in a valid answer
  84. while True:
  85.     if answer2.upper() in q2Answers:
  86.         break
  87.     else:
  88.         answer2 = input("Please enter either 'big', 'small', or press enter to move on to the 3rd question: \n")
  89.  
  90. #Adding to the list according to the users choice in both questions
  91. if answer1.upper()== ("HOT") and answer2.upper()== ("BIG"):
  92.     cities = bigHotCities
  93.     hotBig = [barcelona, rome, mumbai, buenosAries]
  94.     print("Decent choice! \n\n")
  95.    
  96.     input("You have now narrowed down the list of cities to only a few. Press enter see which ones you chose! \n")
  97.  
  98.     print(*cities, sep = ", ")
  99.    
  100.     input("\n\nNow, based on the cities you've narrowed down, press enter and consider these statements, and type the number of the city you prefer: \n")
  101.    
  102.     for i in range(4):
  103.         print(i+1,"-", hotBig[i])
  104.     answerq3 = int(input(">>> \n"))
  105.    
  106.     while answerq3 not in [1,2,3,4]:
  107.         answerq3 = int(input("Press 1, 2, 3, 4 \n"))
  108.        
  109.     if answerq3 == 1:
  110.         print("You dream city has been found! It's the lovely city of Barcelone!! \n")
  111.         print("\nThank you for your time, and please, do not consider this a propor 'How to'-anything.")
  112.     elif answerq3 == 2:
  113.         print("You dream city has been found! It's the lovely city of Rome!! \n")
  114.         print("\nThank you for your time, and please, do not consider this a propor 'How to'-anything.")
  115.     elif answerq3 == 3:
  116.         print("You dream city has been found! It's the lovely city of Mumbai!! \n")
  117.         print("\nThank you for your time, and please, do not consider this a propor 'How to'-anything.")
  118.     elif answerq3 == 4:
  119.         print("You dream city has been found! It's the lovely city of Buenos Aries!! \n")
  120.         print("\nThank you for your time, and please, do not consider this a propor 'How to'-anything.")
  121.    
  122.    
  123. elif answer1.upper()== ("COLD") and answer2.upper()== ("BIG"):
  124.     cities = bigColdCities
  125.     coldBig = [hamburg, paris, madrid]
  126.     print("Decent choice! \n\n")
  127.    
  128.     input("You have now narrowed down the list of cities to only a few. Press enter see which ones you chose! \n")
  129.    
  130.     print(*cities, sep = ", ")
  131.    
  132.     input("\n\nNow, based on the cities you've narrowed down, press enter and consider these statements, and type the number of the city you prefer: \n")
  133.    
  134.     for i in range(3):
  135.         print(i+1,"-", coldBig[i])
  136.     answerq3 = int(input(">>> \n"))
  137.    
  138.     while answerq3 not in [1,2,3,]:
  139.         answerq3 = int(input("Press 1, 2, 3, \n"))
  140.        
  141.     if answerq3 == 1:
  142.         print("You dream city has been found! It's the lovely city of Hamburg!! \n")
  143.         print("\nThank you for your time, and please, do not consider this a propor 'How to'-anything.")
  144.     elif answerq3 == 2:
  145.         print("You dream city has been found! It's the lovely city of Paris!! \n")
  146.         print("\nThank you for your time, and please, do not consider this a propor 'How to'-anything.")
  147.     elif answerq3 == 3:
  148.         print("You dream city has been found! It's the lovely city of Madrid!! \n")
  149.         print("\nThank you for your time, and please, do not consider this a propor 'How to'-anything.")
  150.    
  151. elif answer1.upper()== ("") and answer2.upper()== ("BIG"):
  152.     cities = bigColdCities + bigHotCities
  153.     enterBig = [hamburg, paris, madrid, barcelona, rome, mumbai, buenosAries]
  154.    
  155.     print("Decent choice! \n\n")
  156.    
  157.     input("You have now narrowed down the list of cities to only a few. Press enter see which ones you chose! \n")
  158.  
  159.     print(*cities, sep = ", ")
  160.    
  161.     input("\n\nNow, based on the cities you've narrowed down, press enter and consider these statements, and type the number of the city you prefer: \n")
  162.    
  163.     for i in range(7):
  164.         print(i+1,"-", enterBig[i])
  165.     answerq3 = int(input(">>> \n"))
  166.    
  167.     while answerq3 not in [1,2,3,4,5,6,7]:
  168.         answerq3 = int(input("Press 1, 2, 3, 4, 5, 6, 7\n"))
  169.        
  170.     if answerq3 == 1:
  171.         print("You dream city has been found! It's the lovely city of Hamburg!! \n")
  172.         print("\nThank you for your time, and please, do not consider this a propor 'How to'-anything.")
  173.     elif answerq3 == 2:
  174.         print("You dream city has been found! It's the lovely city of Paris!! \n")
  175.         print("\nThank you for your time, and please, do not consider this a propor 'How to'-anything.")
  176.     elif answerq3 == 3:
  177.         print("You dream city has been found! It's the lovely city of Madrid!! \n")
  178.         print("\nThank you for your time, and please, do not consider this a propor 'How to'-anything.")
  179.     elif answerq3 == 4:
  180.         print("You dream city has been found! It's the lovely city of Barcelona!! \n")
  181.         print("\nThank you for your time, and please, do not consider this a propor 'How to'-anything.")
  182.     elif answerq3 == 5:
  183.         print("You dream city has been found! It's the lovely city of Rome!! \n")
  184.         print("\nThank you for your time, and please, do not consider this a propor 'How to'-anything.")
  185.     elif answerq3 == 6:
  186.         print("You dream city has been found! It's the lovely city of Mumbai!! \n")
  187.         print("\nThank you for your time, and please, do not consider this a propor 'How to'-anything.")
  188.     elif answerq3 == 7:
  189.         print("You dream city has been found! It's the lovely city of Buenos Aries!! \n")
  190.         print("\nThank you for your time, and please, do not consider this a propor 'How to'-anything.")
  191.    
  192.    
  193. elif answer1.upper()== ("HOT") and answer2.upper()== ("SMALL"):
  194.     cities = smallHotCities
  195.     hotSmall = [athens, telaviv, macao]
  196.     print("Decent choice! \n\n")
  197.    
  198.     input("You have now narrowed down the list of cities to only a few. Press enter see which ones you chose! \n")
  199.    
  200.     print(*cities, sep = ", ")
  201.    
  202.     input("\n\nNow, based on the cities you've narrowed down, press enter and consider these statements, and type the number of the city you prefer: \n")
  203.    
  204.     for i in range(3):
  205.         print(i+1,"-", hotSmall[i])
  206.     answerq3 = int(input(">>> \n"))
  207.    
  208.     while answerq3 not in [1,2,3,]:
  209.         answerq3 = int(input("Press 1, 2, 3, \n"))
  210.        
  211.     if answerq3 == 1:
  212.         print("You dream city has been found! It's the lovely city of Athens!! \n")
  213.         print("\nThank you for your time, and please, do not consider this a propor 'How to'-anything.")
  214.     elif answerq3 == 2:
  215.         print("You dream city has been found! It's the lovely city of Tel Aviv!! \n")
  216.         print("\nThank you for your time, and please, do not consider this a propor 'How to'-anything.")
  217.     elif answerq3 == 3:
  218.         print("You dream city has been found! It's the lovely city of Macao!! \n")
  219.         print("\nThank you for your time, and please, do not consider this a propor 'How to'-anything")
  220.    
  221. elif answer1.upper()== ("COLD") and answer2.upper()== ("SMALL"):
  222.     cities = smallColdCities
  223.     coldSmall = [copenhagen, aarhus, oslo]
  224.     print("Decent choice! \n\n")
  225.    
  226.     input("You have now narrowed down the list of cities to only a few. Press enter see which ones you chose! \n")
  227.    
  228.     print(*cities, sep = ", ")
  229.    
  230.     input("\n\nNow, based on the cities you've narrowed down, press enter and consider these statements, and type the number of the city you prefer: \n")
  231.    
  232.     for i in range(3):
  233.         print(i+1,"-", coldSmall[i])
  234.     answerq3 = int(input(">>> \n"))
  235.    
  236.     while answerq3 not in [1,2,3,]:
  237.         answerq3 = int(input("Press 1, 2, 3, \n"))
  238.        
  239.     if answerq3 == 1:
  240.         print("You dream city has been found! It's the lovely city of Copenhagen!! \n")
  241.         print("\nThank you for your time, and please, do not consider this a propor 'How to'-anything.")
  242.     elif answerq3 == 2:
  243.         print("You dream city has been found! It's the lovely city of Aarhus!! \n")
  244.         print("\nThank you for your time, and please, do not consider this a propor 'How to'-anything.")
  245.     elif answerq3 == 3:
  246.         print("You dream city has been found! It's the lovely city of Oslo!! \n")
  247.         print("\nThank you for your time, and please, do not consider this a propor 'How to'-anything")
  248.    
  249. elif answer1.upper()== ("") and answer2.upper()== ("SMALL"):
  250.     cities = smallHotCities + smallColdCities
  251.     enterSmall = [copenhagen, aarhus, oslo, athens, telaviv, macao]
  252.     print("Decent choice! \n\n")
  253.    
  254.     input("You have now narrowed down the list of cities to only a few. Press enter see which ones you chose! \n")
  255.    
  256.     print(*cities, sep = ", ")
  257.    
  258.     input("\n\nNow, based on the cities you've narrowed down, press enter and consider these statements, and type the number of the city you prefer: \n")
  259.    
  260.     for i in range(6):
  261.         print(i+1,"-", enterSmall[i])
  262.     answerq3 = int(input(">>> \n"))
  263.    
  264.     while answerq3 not in [1,2,3,4,5,6]:
  265.         answerq3 = int(input("Press 1, 2, 3, 4, 5, 6 \n"))
  266.        
  267.     if answerq3 == 1:
  268.         print("You dream city has been found! It's the lovely city of Copenhagen!! \n")
  269.         print("\nThank you for your time, and please, do not consider this a propor 'How to'-anything.")
  270.     elif answerq3 == 2:
  271.         print("You dream city has been found! It's the lovely city of Aarhus!! \n")
  272.         print("\nThank you for your time, and please, do not consider this a propor 'How to'-anything.")
  273.     elif answerq3 == 3:
  274.         print("You dream city has been found! It's the lovely city of Oslo!! \n")
  275.         print("\nThank you for your time, and please, do not consider this a propor 'How to'-anything")
  276.     elif answerq3 == 4:
  277.         print("You dream city has been found! It's the lovely city of Athens!! \n")
  278.         print("\nThank you for your time, and please, do not consider this a propor 'How to'-anything.")
  279.     elif answerq3 == 5:
  280.         print("You dream city has been found! It's the lovely city of Tel Aviv!! \n")
  281.         print("\nThank you for your time, and please, do not consider this a propor 'How to'-anything.")
  282.     elif answerq3 == 6:
  283.         print("You dream city has been found! It's the lovely city of Macao!! \n")
  284.         print("\nThank you for your time, and please, do not consider this a propor 'How to'-anything")  
  285.    
  286. elif answer1.upper()== ("HOT") and answer2.upper()== (""):
  287.     cities = hotCities
  288.     hotEnter = [macao, buenosAries, mumbai, telaviv, rome, athens, barcelona]
  289.     print("Decent choice! \n\n")
  290.    
  291.     input("You have now narrowed down the list of cities to only a few. Press enter see which ones you chose! \n")
  292.    
  293.     print(*cities, sep = ", ")
  294.    
  295.     input("\n\nNow, based on the cities you've narrowed down, press enter and consider these statements, and type the number of the city you prefer: \n")
  296.    
  297.     for i in range(7):
  298.         print(i+1,"-", hotEnter[i])
  299.     answerq3 = int(input(">>> \n"))
  300.    
  301.     while answerq3 not in [1,2,3,4,5,6,7]:
  302.         answerq3 = int(input("Press 1, 2, 3, 4, 5, 6, 7 \n"))
  303.        
  304.     if answerq3 == 1:
  305.         print("You dream city has been found! It's the lovely city of Macao!! \n")
  306.         print("\nThank you for your time, and please, do not consider this a propor 'How to'-anything.")
  307.     elif answerq3 == 2:
  308.         print("You dream city has been found! It's the lovely city of Buenos Aries!! \n")
  309.         print("\nThank you for your time, and please, do not consider this a propor 'How to'-anything.")
  310.     elif answerq3 == 3:
  311.         print("You dream city has been found! It's the lovely city of Mumbai!! \n")
  312.         print("\nThank you for your time, and please, do not consider this a propor 'How to'-anything")
  313.     elif answerq3 == 4:
  314.         print("You dream city has been found! It's the lovely city of Tel Aviv!! \n")
  315.         print("\nThank you for your time, and please, do not consider this a propor 'How to'-anything.")
  316.     elif answerq3 == 5:
  317.         print("You dream city has been found! It's the lovely city of Rome!! \n")
  318.         print("\nThank you for your time, and please, do not consider this a propor 'How to'-anything.")
  319.     elif answerq3 == 6:
  320.         print("You dream city has been found! It's the lovely city of Athens!! \n")
  321.         print("\nThank you for your time, and please, do not consider this a propor 'How to'-anything")
  322.     elif answerq3 == 7:
  323.         print("You dream city has been found! It's the lovely city of Barcelona!! \n")
  324.         print("\nThank you for your time, and please, do not consider this a propor 'How to'-anything")
  325.    
  326. elif answer1.upper()== ("COLD") and answer2.upper()== (""):
  327.     cities = coldCities
  328.     coldEnter = [copenhagen, aarhus, oslo, hamburg, paris, madrid]
  329.     print("Decent choice! \n\n")
  330.    
  331.     input("You have now narrowed down the list of cities to only a few. Press enter see which ones you chose! \n")
  332.    
  333.     print(*cities, sep = ", ")
  334.    
  335.     input("\n\nNow, based on the cities you've narrowed down, press enter and consider these statements, and type the number of the city you prefer: \n")
  336.    
  337.     for i in range(6):
  338.         print(i+1,"-", coldEnter[i])
  339.     answerq3 = int(input(">>> \n"))
  340.    
  341.     while answerq3 not in [1,2,3,4,5,6]:
  342.         answerq3 = int(input("Press 1, 2, 3, 4, 5, 6 \n"))
  343.        
  344.     if answerq3 == 1:
  345.         print("You dream city has been found! It's the lovely city of Copenhagen!! \n")
  346.         print("\nThank you for your time, and please, do not consider this a propor 'How to'-anything.")
  347.     elif answerq3 == 2:
  348.         print("You dream city has been found! It's the lovely city of Aarhus!! \n")
  349.         print("\nThank you for your time, and please, do not consider this a propor 'How to'-anything.")
  350.     elif answerq3 == 3:
  351.         print("You dream city has been found! It's the lovely city of Olso!! \n")
  352.         print("\nThank you for your time, and please, do not consider this a propor 'How to'-anything")
  353.     elif answerq3 == 4:
  354.         print("You dream city has been found! It's the lovely city of Hamburg!! \n")
  355.         print("\nThank you for your time, and please, do not consider this a propor 'How to'-anything.")
  356.     elif answerq3 == 5:
  357.         print("You dream city has been found! It's the lovely city of Paris!! \n")
  358.         print("\nThank you for your time, and please, do not consider this a propor 'How to'-anything.")
  359.     elif answerq3 == 6:
  360.         print("You dream city has been found! It's the lovely city of Madrid!! \n")
  361.         print("\nThank you for your time, and please, do not consider this a propor 'How to'-anything")
  362.    
  363.    
  364. else:
  365.     answer1.upper()== ("") and answer2.upper()== ("")
  366.     cities = hotCities + coldCities
  367.     enterEnter = [macao, buenosAries, mumbai, telaviv, rome, athens, barcelona, copenhagen, aarhus, oslo, hamburg, paris, madrid]
  368.     print("Decent choice! \n\n")
  369.    
  370.     input("You have now narrowed down the list of cities to only a few. Press enter see which ones you chose! \n")
  371.    
  372.     print(*cities, sep = ", ")
  373.    
  374.     input("\n\nNow, based on the cities you've narrowed down, press enter and consider these statements, and type the number of the city you prefer:\n")
  375.    
  376.     for i in range(13):
  377.         print(i+1,"-", enterEnter[i])
  378.     answerq3 = int(input(">>> \n"))
  379.    
  380.     while answerq3 not in [1,2,3,4,5,6,7,8,9,10,11,12,13]:
  381.         answerq3 = int(input("Press 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13 \n"))
  382.        
  383.     if answerq3 == 1:
  384.         print("You dream city has been found! It's the lovely city of Macao!! \n")
  385.         print("\nThank you for your time, and please, do not consider this a propor 'How to'-anything.")
  386.     elif answerq3 == 2:
  387.         print("You dream city has been found! It's the lovely city of Buenos Aries!! \n")
  388.         print("\nThank you for your time, and please, do not consider this a propor 'How to'-anything.")
  389.     elif answerq3 == 3:
  390.         print("You dream city has been found! It's the lovely city of Mumbai!! \n")
  391.         print("\nThank you for your time, and please, do not consider this a propor 'How to'-anything")
  392.     elif answerq3 == 4:
  393.         print("You dream city has been found! It's the lovely city of Tel Aviv!! \n")
  394.         print("\nThank you for your time, and please, do not consider this a propor 'How to'-anything.")
  395.     elif answerq3 == 5:
  396.         print("You dream city has been found! It's the lovely city of Rome!! \n")
  397.         print("\nThank you for your time, and please, do not consider this a propor 'How to'-anything.")
  398.     elif answerq3 == 6:
  399.         print("You dream city has been found! It's the lovely city of Athens!! \n")
  400.         print("\nThank you for your time, and please, do not consider this a propor 'How to'-anything")
  401.     elif answerq3 == 7:
  402.         print("You dream city has been found! It's the lovely city of Barcelona!! \n")
  403.         print("\nThank you for your time, and please, do not consider this a propor 'How to'-anything.")
  404.     elif answerq3 == 8:
  405.         print("You dream city has been found! It's the lovely city of Copenhagen!! \n")
  406.         print("\nThank you for your time, and please, do not consider this a propor 'How to'-anything")
  407.     elif answerq3 == 9:
  408.         print("You dream city has been found! It's the lovely city of Aarhus!! \n")
  409.         print("\nThank you for your time, and please, do not consider this a propor 'How to'-anything.")
  410.     elif answerq3 == 10:
  411.         print("You dream city has been found! It's the lovely city of Oslo!! \n")
  412.         print("\nThank you for your time, and please, do not consider this a propor 'How to'-anything.")
  413.     elif answerq3 == 11:
  414.         print("You dream city has been found! It's the lovely city of Hamburg!! \n")
  415.         print("\nThank you for your time, and please, do not consider this a propor 'How to'-anything")
  416.     elif answerq3 == 12:
  417.         print("You dream city has been found! It's the lovely city of Paris!! \n")
  418.         print("\nThank you for your time, and please, do not consider this a propor 'How to'-anything")
  419.     elif answerq3 == 13:
  420.         print("You dream city has been found! It's the lovely city of Madrid!! \n")
  421.         print("\nThank you for your time, and please, do not consider this a propor 'How to'-anything")
  422.  
  423. #### END OF CODE#######
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement