import pandas as pd
# List of 100 unique thought-provoking questions
questions = [
"What would you do if you woke up in a different decade?",
"If your reflection started acting on its own, what would you do?",
"What is something invisible but still has a huge impact?",
"If you could hear one secret about the world, what would it be?",
"What if gravity suddenly became twice as strong for an hour?",
"If animals could talk, which one would have the most interesting stories?",
"What if every lie you ever told became true?",
"If you could relive one moment but not change it, what would it be?",
"What if you had to pick one word to describe your life?",
"If you could swap lives with someone for a day, who would it be?",
"What’s a mystery you wish you had the answer to?",
"If your thoughts appeared as text above your head, what would you do?",
"What if you could only communicate with one facial expression forever?",
"If one of your dreams became reality, which would you choose?",
"What if every decision you made was broadcasted live?",
"If you had to pick a new name right now, what would it be?",
"What if time moved 10x slower for you than everyone else?",
"If you could undo one thing in your past, what would it be?",
"What’s one thing that seems real but isn’t?",
"If the sky changed color every second, how would that affect life?",
"What if you could change one law of physics?",
"If you had to live in a video game world, which would you choose?",
"What’s something common today that people will laugh at in 100 years?",
"If everyone could read your mind for 24 hours, what would happen?",
"What if your entire past was erased from your memory right now?",
"If you could see one alternate version of yourself, what would they be doing?",
"What if you could teleport once, but never return?",
"If time had a physical form, what would it look like?",
"What’s something that makes sense but still feels impossible?",
"If every time you blinked, you traveled 5 seconds into the future, what would you do?",
"What if you woke up tomorrow with a completely new personality?",
"If emotions had colors, what color would sadness be?",
"What if you were the last human on Earth for a year?",
"If your dreams were recorded, would you watch them?",
"What if your whole life was a movie and you just realized it?",
"If you could ask an alien one question, what would it be?",
"What’s a thought you’ve had that you’ve never shared?",
"If you had to relive today forever, what would you change?",
"What if the internet disappeared right now?",
"If memories had weight, which one would be the heaviest?",
"What if you could live in any book, which one would it be?",
"If everyone had to wear one emotion on their face forever, which would you choose?",
"What if you had to swap your biggest strength for your biggest weakness?",
"If one random thing in your room disappeared forever, what would it be?",
"What if you could talk to your younger self for one minute?",
"If your name had to be changed to a sound, what would it be?",
"What if shadows could whisper secrets about you?",
"If you could experience one moment from history firsthand, which would it be?",
"What if one random word you said today became illegal?",
"If you could be a ghost for 24 hours, what would you do?",
"What if mirrors actually showed you how others see you?",
"If you had to survive one horror movie, which one would you choose?",
"What if every person you met forgot you after 24 hours?",
"If you could remove one fear from your mind, which would it be?",
"What if you could smell emotions?",
"If you could choose one ability to master instantly, what would it be?",
"What if you woke up one inch shorter every day?",
"If music controlled your mood, what song would keep playing in your head?",
"What if you suddenly understood all languages?",
"If you had to live in a world without colors, would you?",
"What if your phone could tell you how you will die?",
"If you could ask one historical figure a personal question, who would it be?",
"What if all numbers disappeared from existence?",
"If you could hear one object talk, what would it be?",
"What if every time you snapped your fingers, 10 minutes passed?",
"If every time you sneezed, you teleported somewhere random, what would you do?",
"What if the last thing you Googled became reality?",
"If you had to live inside a dream, which one would you pick?",
"What if you could only say one word for the rest of your life?",
"If every lie you told cost you one hour of life, how would you change?",
"What if humans had tails?",
"If you could see one year into the future, would you?",
"What if your past self could judge your present self?",
"If you could hear one thing that no one else can, what would it be?",
"What if every mirror showed an alternate version of you?",
"If you had to give up sight or sound, which one?",
"What if your own shadow became your enemy?",
"If your biggest fear became your pet, what would it look like?",
"What if every time you walked through a door, you forgot something?",
"If you could rewind time by 30 seconds, how often would you use it?",
"What if everyone could see your internet search history?",
"If the world reset tomorrow, what would you do first?",
"What if you found out your whole life was a simulation?",
"If you could ask one person in your life a question they must answer truthfully, who would it be?",
"What if your reflection didn’t move at the same time as you?",
"If your pet could talk for one minute, what would they say?",
"What if you woke up tomorrow and everyone had disappeared?",
"If you could send one message to your future self, what would it say?",
"What if your thoughts were narrated out loud at all times?",
"If you could freeze time once for an hour, how would you use it?",
"What if your life was secretly being live-streamed?",
"If you could relive one random day in your life, which would it be?",
"What if you had to choose between never sleeping or never eating?",
"If you had to live in the last movie you watched, how would you survive?"
]
# Create DataFrame
df = pd.DataFrame({"Question": questions})
# Save as Excel file
file_path = "/mnt/data/100_thought_provoking_questions.xlsx"
df.to_excel(file_path, index=False)
# Provide the file path for download
file_path
Comments
Post a Comment