arjunanand13 commited on
Commit
fcd431c
·
verified ·
1 Parent(s): 5c65ed4

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +10 -10
app.py CHANGED
@@ -16,16 +16,16 @@ rows = None
16
  columns = None
17
  user_choices = None
18
  data = [
19
- [1, "Buckingham Palace", 27, 34, 0.12, "London", "United Kingdom", 601, 920, 105000, "pdf_files/pdf/Buckingham_palace.pdf"],
20
- [2, "White House", 355, 67, 0.08, "Washington D.C.", "United States", 601, 1527, 80000, "pdf_files/pdf/White_House.pdf"],
21
- [3, "Taj Mahal Palace", 455, 76, 0.15, "Mumbai", "India", 795, 748, 67000, "pdf_files/pdf/Taj_Mahal_palace.pdf"],
22
- [4, "Versailles Palace", 455, 45, 0.1, "Versailles", "France", 731, 1800, 145000, "pdf_files/pdf/Palace_of_Versailes.pdf"],
23
- [5, "Villa Leopolda", 223, 21, 0.05, "Villefranche-sur-Mer", "France", 680, 6886, 65000, "pdf_files/pdf/Villa_Leopolda.pdf"],
24
- [6, "Antilia", 455, 70, 0.46, "Mumbai", "India", 612, 2520, 179000, "pdf_files/pdf/Antilia.pdf"],
25
- [7, "The Biltmore Estate", 544, 93, 0.2, "Asheville", "United States", 639, 2040, 50000, "pdf_files/pdf/Biltmore_Estate.pdf"],
26
- [8, "Hearst Castle", 303, 57, 0.08, "San Simeon", "United States", 731, 1050, 71600, "pdf_files/pdf/Hearst_castle.pdf"],
27
- [9, "Villa Les Cèdres", 489, 88, 0.09, "Saint-Jean-Cap-Ferrat", "France", 730, 1092, 100000, "pdf_files/pdf/Villa_Les_Cedres.pdf"],
28
- [10, "Istana Nurul Iman", 350, 34, 7.46, "Bandar Seri Begawan", "Brunei", 670, 5403, 300000, "pdf_files/pdf/Istana_Nurul_Iman.pdf"]
29
  ]
30
  choices = [item[1] for item in data]
31
 
 
16
  columns = None
17
  user_choices = None
18
  data = [
19
+ [1, "Buckingham Palace", 27, 34, 0.12, "London", "United Kingdom", 601, 920, 105000, "Buckingham_palace.pdf"],
20
+ [2, "White House", 355, 67, 0.08, "Washington D.C.", "United States", 601, 1527, 80000, "White_House.pdf"],
21
+ [3, "Taj Mahal Palace", 455, 76, 0.15, "Mumbai", "India", 795, 748, 67000, "Taj_Mahal_palace.pdf"],
22
+ [4, "Versailles Palace", 455, 45, 0.1, "Versailles", "France", 731, 1800, 145000, "Palace_of_Versailes.pdf"],
23
+ [5, "Villa Leopolda", 223, 21, 0.05, "Villefranche-sur-Mer", "France", 680, 6886, 65000, "Villa_Leopolda.pdf"],
24
+ [6, "Antilia", 455, 70, 0.46, "Mumbai", "India", 612, 2520, 179000, "Antilia.pdf"],
25
+ [7, "The Biltmore Estate", 544, 93, 0.2, "Asheville", "United States", 639, 2040, 50000, "Biltmore_Estate.pdf"],
26
+ [8, "Hearst Castle", 303, 57, 0.08, "San Simeon", "United States", 731, 1050, 71600, "Hearst_castle.pdf"],
27
+ [9, "Villa Les Cèdres", 489, 88, 0.09, "Saint-Jean-Cap-Ferrat", "France", 730, 1092, 100000, "Villa_Les_Cedres.pdf"],
28
+ [10, "Istana Nurul Iman", 350, 34, 7.46, "Bandar Seri Begawan", "Brunei", 670, 5403, 300000, "Istana_Nurul_Iman.pdf"]
29
  ]
30
  choices = [item[1] for item in data]
31