awacke1 commited on
Commit
a69802f
β€’
1 Parent(s): 42d684f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +11 -3
app.py CHANGED
@@ -38,13 +38,21 @@ def display_table():
38
  st.title("Fun Questions Table")
39
 
40
  data = [
41
- (1, "πŸ˜‚", "How many cups of coffee do you need to function like a normal human being?", "..."),
42
- (2, "πŸ€”", "If animals could talk, which species do you think would be the most annoying?", "..."),
43
- # ... (remaining questions) ...
 
 
 
 
 
 
 
44
  ]
45
 
46
  st.table(pd.DataFrame(data, columns=['Question', 'Emoji', 'Title', 'Description']))
47
 
 
48
  def main():
49
  display_graph()
50
  display_table()
 
38
  st.title("Fun Questions Table")
39
 
40
  data = [
41
+ (1, "πŸ˜‚", "How many cups of coffee do you need to function like a normal human being?", "[Wikipedia](https://en.wikipedia.org/wiki/Coffee)"),
42
+ (2, "πŸ€”", "If animals could talk, which species do you think would be the most annoying?", "[Wikipedia](https://en.wikipedia.org/wiki/Animal_communication)"),
43
+ (3, "🀫", "What's the craziest conspiracy theory you've ever heard?", "[Wikipedia](https://en.wikipedia.org/wiki/Conspiracy_theory)"),
44
+ (4, "🀣", "What's the worst pickup line you've ever heard or used?", "[Wikipedia](https://en.wikipedia.org/wiki/Pick-up_line)"),
45
+ (5, "😜", "If you were a superhero, what would your superpower be?", "[Wikipedia](https://en.wikipedia.org/wiki/Superpower_(ability))"),
46
+ (6, "🀯", "If you could time travel, what period in history would you go to and why?", "[Wikipedia](https://en.wikipedia.org/wiki/Time_travel)"),
47
+ (7, "😝", "What's the weirdest thing you've ever eaten?", "[Wikipedia](https://en.wikipedia.org/wiki/List_of_delicacies)"),
48
+ (8, "πŸ€ͺ", "What's the most embarrassing thing that's ever happened to you in public?", "[Wikipedia](https://en.wikipedia.org/wiki/Embarrassment)"),
49
+ (9, "😈", "If you could be any movie villain, who would you choose and why?", "[Wikipedia](https://en.wikipedia.org/wiki/Villain)"),
50
+ (10, "πŸ™ƒ", "What's the most useless talent you have?", "[Wikipedia](https://en.wikipedia.org/wiki/Talent_(human))"),
51
  ]
52
 
53
  st.table(pd.DataFrame(data, columns=['Question', 'Emoji', 'Title', 'Description']))
54
 
55
+
56
  def main():
57
  display_graph()
58
  display_table()