# Application 1 - Treasure Hunt
print("🏡 Welcome to the 'Hunt Around the Home' Treasure Game!")
print("🧩 Solve 7 riddles to find where to go next.")
print("Each clue leads you to a real place or object around your house.\n")
score = 0
print("🧺 Clue 1:\nI help clean clothes, I spin and whirr,\nCheck where the clothes take a bubbly stir.")
answer1 = input("Your answer: ").lower() # We'll explore this built in function soon!
if answer1 == "washing machine":
print("✅ Correct! Go to the washing machine to find your next clue.\n")
score += 1
print("🌿 Clue 2:\nI'm full of flowers, green and neat,\nStep outside and feel the breeze so sweet.")
answer2 = input("Your answer: ").lower()
if answer2 == "garden":
print("✅ Fresh! Head over to the garden for your next clue.\n")
score += 1
print("☕ Clue 3:\nHere I sit and boil your tea,\nIn the kitchen is where I'll be.")
answer3 = input("Your answer: ").lower()
if answer3 == "kettle":
print("✅ Perfect! The kettle whispers your next clue.\n")
score += 1
print("🪞 Clue 4:\nI show your face both day and night,\nIn bathrooms or bedrooms, I reflect light.")
answer4 = input("Your answer: ").lower()
if answer4 == "mirror":
print("✅ Looking sharp! Check the mirror for your next clue.\n")
score += 1
print("🛋️ Clue 5:\nI’m soft and comfy, where you take a nap,\nSit with a book or take a quick nap.")
answer5 = input("Your answer: ").lower()
if answer5 == "sofa" or answer5 == "couch":
print("✅ Cozy! Head to the sofa for your next riddle.\n")
score += 1
print("🛏️ Clue 6:\nI hold your dreams and fluffy pillow,\nCome here to rest when the moon is yellow.")
answer6 = input("Your answer: ").lower()
if answer6 == "bed":
print("✅ Dreamy! Look near your bed for the final clue.\n")
score += 1
print("🎁 Final Clue:\nI keep your treasures locked away,\nFind your gift where your jewels stay.")
answer7 = input("Your answer: ").lower()
if answer7 == "drawer" or answer7 == "jewelry box":
print("🎉 Congratulations! You found the final treasure!")
print("🏆 Your reward: a smile, a snack, and a proud happy dance!\n")
score += 1
else:
print("❌ Oops! Hint: It's where valuables are stored.")
print("✔️ Answer: Jewelry box or drawer\n")
else:
print("❌ Wrong. Hint: You sleep on me every night.")
print("✔️ Answer: Bed\n")
else:
print("❌ Incorrect. Hint: Soft seating in the hall.")
print("✔️ Answer: Sofa\n")
else:
print("❌ Wrong. Hint: I reflect you.")
print("✔️ Answer: Mirror\n")
else:
print("❌ Nope. Hint: I heat water for tea.")
print("✔️ Answer: Kettle\n")
else:
print("❌ Incorrect. Hint: It’s outside with plants.")
print("✔️ Answer: Garden\n")
else:
print("❌ Wrong. Hint: It washes your clothes, not your hands.")
print("✔️ Answer: Washing Machine\n")
print(f"⭐ Final Score: {score}/7 ⭐")
if score == 7:
print("🎊 You're the Home Hunt Champion! Enjoy your treasure!")
elif score >= 4:
print("👏 Well done! You’re almost there, try again later!")
else:
print("🔍 Keep exploring, treasure awaits you next time!")
print("🔚 Thanks for playing the Hunt Around the Home!")
🏡 Welcome to the 'Hunt Around the Home' Treasure Game! 🧩 Solve 7 riddles to find where to go next. Each clue leads you to a real place or object around your house. 🧺 Clue 1: I help clean clothes, I spin and whirr, Check where the clothes take a bubbly stir. Your answer: washing machine ✅ Correct! Go to the washing machine to find your next clue. 🌿 Clue 2: I'm full of flowers, green and neat, Step outside and feel the breeze so sweet. Your answer: garden ✅ Fresh! Head over to the garden for your next clue. ☕ Clue 3: Here I sit and boil your tea, In the kitchen is where I'll be. Your answer: kettle ✅ Perfect! The kettle whispers your next clue. 🪞 Clue 4: I show your face both day and night, In bathrooms or bedrooms, I reflect light. Your answer: mirror ✅ Looking sharp! Check the mirror for your next clue. 🛋️ Clue 5: I’m soft and comfy, where you take a nap, Sit with a book or take a quick nap. Your answer: sofa ✅ Cozy! Head to the sofa for your next riddle. 🛏️ Clue 6: I hold your dreams and fluffy pillow, Come here to rest when the moon is yellow. Your answer: bed ✅ Dreamy! Look near your bed for the final clue. 🎁 Final Clue: I keep your treasures locked away, Find your gift where your jewels stay. Your answer: jewelry box 🎉 Congratulations! You found the final treasure! 🏆 Your reward: a smile, a snack, and a proud happy dance! ⭐ Final Score: 7/7 ⭐ 🎊 You're the Home Hunt Champion! Enjoy your treasure! 🔚 Thanks for playing the Hunt Around the Home!
# Application 2 - Ticket Booking App
print("🎫 Welcome to QuickBook - Your Travel Assistant\n")
print("What would you like to book today?")
print("1. Bus")
print("2. Train")
print("3. Flight")
print("4. Rental Car")
choice = input("Enter your choice (bus/train/flight/car): ").lower()
if choice == "bus":
print("\n🚌 Bus Booking Selected")
from_location = input("From: ")
to_location = input("To: ")
date = input("Date of travel (DD-MM-YYYY): ")
seats = input("Number of seats: ")
ac_choice = input("Do you prefer AC or Non-AC? ")
print(f"\n✅ Booking confirmed for {seats} seat(s) in a {ac_choice.upper()} bus from {from_location} to {to_location} on {date}.")
elif choice == "train":
print("\n🚆 Train Booking Selected")
from_station = input("From Station: ")
to_station = input("To Station: ")
date = input("Date of journey (DD-MM-YYYY): ")
seat_class = input("Class (Sleeper/3AC/2AC/1AC): ")
passengers = input("Number of passengers: ")
print(f"\n✅ Booking confirmed for {passengers} passenger(s) in {seat_class.upper()} class from {from_station} to {to_station} on {date}.")
elif choice == "flight":
print("\n✈️ Flight Booking Selected")
from_airport = input("From Airport: ")
to_airport = input("To Airport: ")
date = input("Date of departure (DD-MM-YYYY): ")
seat_type = input("Seat Type (Economy/Business/First): ")
airline = input("Preferred airline (Optional, press enter to skip): ")
if airline:
print(f"\n✅ Booking confirmed on {airline.title()} from {from_airport} to {to_airport} on {date} in {seat_type.upper()} class.")
else:
print(f"\n✅ Booking confirmed from {from_airport} to {to_airport} on {date} in {seat_type.upper()} class.")
elif choice == "car":
print("\n🚗 Rental Car Booking Selected")
pickup_location = input("Pickup Location: ")
drop_location = input("Drop Location: ")
pickup_date = input("Pickup Date (DD-MM-YYYY): ")
rental_days = input("Number of rental days: ")
car_type = input("Type of car (Hatchback/Sedan/SUV): ")
print(f"\n✅ Booking confirmed for a {car_type.upper()} car from {pickup_location} to {drop_location},")
print(f" starting on {pickup_date} for {rental_days} day(s).")
else:
print("❌ Invalid choice. Please restart and choose from bus, train, flight, or car.")
print("\n🔚 Thank you for using QuickBook!")
🎫 Welcome to QuickBook - Your Travel Assistant What would you like to book today? 1. Bus 2. Train 3. Flight 4. Rental Car Enter your choice (bus/train/flight/car): bus 🚌 Bus Booking Selected From: Coimbatore To: Ayodhya Date of travel (DD-MM-YYYY): 20-04-2025 Number of seats: 2 Do you prefer AC or Non-AC? AC ✅ Booking confirmed for 2 seat(s) in a AC bus from Coimbatore to Ayodhya on 20-04-2025. 🔚 Thank you for using QuickBook!
# Application 3 - Grocery Booking App
print("🛒 Welcome to EasyGrocery Booking!\n")
print("Available Items:")
print("1. Rice - ₹50 per kg")
print("2. Milk - ₹25 per packet")
print("3. Apple - ₹15 each")
print("4. Banana - ₹5 each")
print("5. Tomato - ₹20 per kg")
print("6. Potato - ₹25 per kg")
print("7. Onion - ₹30 per kg")
item = input("\nEnter the item you want to buy: ").lower()
if item == "rice":
price = 50
quantity = int(input("How many kg of rice? "))
total = price * quantity
print(f"You selected {quantity} kg of Rice. Amount = ₹{total}")
elif item == "milk":
price = 25
quantity = int(input("How many packets of milk? "))
total = price * quantity
print(f"You selected {quantity} packet(s) of Milk. Amount = ₹{total}")
elif item == "apple":
price = 15
quantity = int(input("How many apples? "))
total = price * quantity
print(f"You selected {quantity} Apple(s). Amount = ₹{total}")
elif item == "banana":
price = 5
quantity = int(input("How many bananas? "))
total = price * quantity
print(f"You selected {quantity} Banana(s). Amount = ₹{total}")
elif item == "tomato":
price = 20
quantity = int(input("How many kg of tomatoes? "))
total = price * quantity
print(f"You selected {quantity} kg of Tomato. Amount = ₹{total}")
elif item == "potato":
price = 25
quantity = int(input("How many kg of potatoes? "))
total = price * quantity
print(f"You selected {quantity} kg of Potato. Amount = ₹{total}")
elif item == "onion":
price = 30
quantity = int(input("How many kg of onions? "))
total = price * quantity
print(f"You selected {quantity} kg of Onion. Amount = ₹{total}")
else:
print("❌ Item not found. Please select from the listed items.")
total = 0
if total > 0:
print("\n🚚 Choose Delivery Option:")
print("1. Home Delivery (₹30 extra)")
print("2. Store Pickup (Free)")
delivery = input("Enter 1 or 2: ")
if delivery == "1":
delivery_charge = 30
print("🏠 Home delivery selected. ₹30 added.")
else:
delivery_charge = 0
print("🏬 Store pickup selected. No extra charge.")
grand_total = total + delivery_charge
print("\n💳 Choose Payment Method:")
print("1. Cash on Delivery")
print("2. UPI")
print("3. Card Payment")
payment = input("Enter 1, 2 or 3: ")
if payment == "1":
payment_mode = "Cash on Delivery"
elif payment == "2":
payment_mode = "UPI"
else:
payment_mode = "Card Payment"
print("\n🧾 Final Bill")
print(f"Item: {item.title()} x {quantity}")
print(f"Total: ₹{total}")
print(f"Delivery Charge: ₹{delivery_charge}")
print(f"Grand Total: ₹{grand_total}")
print(f"Payment Mode: {payment_mode}")
print("\n✅ Thank you for shopping with EasyGrocery!")
🛒 Welcome to EasyGrocery Booking! Available Items: 1. Rice - ₹50 per kg 2. Milk - ₹25 per packet 3. Apple - ₹15 each 4. Banana - ₹5 each 5. Tomato - ₹20 per kg 6. Potato - ₹25 per kg 7. Onion - ₹30 per kg Enter the item you want to buy: potato How many kg of potatoes? 2 You selected 2 kg of Potato. Amount = ₹50 🚚 Choose Delivery Option: 1. Home Delivery (₹30 extra) 2. Store Pickup (Free) Enter 1 or 2: 1 🏠 Home delivery selected. ₹30 added. 💳 Choose Payment Method: 1. Cash on Delivery 2. UPI 3. Card Payment Enter 1, 2 or 3: 1 🧾 Final Bill Item: Potato x 2 Total: ₹50 Delivery Charge: ₹30 Grand Total: ₹80 Payment Mode: Cash on Delivery ✅ Thank you for shopping with EasyGrocery!
# Application 4 - Pythagoras Theorem Calculator
print("📐 Welcome to the Pythagoras Theorem Calculator!")
print("You can calculate:")
print("1. Hypotenuse")
print("2. One of the sides (height or base)")
choice = input("Enter 1 to find hypotenuse, 2 to find a side: ")
if choice == "1":
height = float(input("Enter height: "))
base = float(input("Enter base: "))
hypotenuse = (height**2 + base**2) ** 0.5
print(f"The hypotenuse is: {hypotenuse:.2f}")
else:
known_side = input("Which side do you know? (height or base): ").lower()
if known_side == "height":
height = float(input("Enter height: "))
hypotenuse = float(input("Enter hypotenuse c: "))
if hypotenuse > height:
base = (hypotenuse**2 - height**2) ** 0.5
print(f"The base is: {base:.2f}")
else:
print("❌ Hypotenuse must be greater than height.")
elif known_side == "base":
base = float(input("Enter base: "))
hypotenuse = float(input("Enter hypotenuse c: "))
if hypotenuse > base:
height = (hypotenuse**2 - base**2) ** 0.5
print(f"The height is: {height:.2f}")
else:
print("❌ Hypotenuse must be greater than base.")
else:
print("❌ Invalid choice. Please enter 'height' or 'base'.")
📐 Welcome to the Pythagoras Theorem Calculator! You can calculate: 1. Hypotenuse 2. One of the sides (height or base) Enter 1 to find hypotenuse, 2 to find a side: 1 Enter height: 4 Enter base: 3 The hypotenuse is: 5.00
# Application 5 - Pizza Ordering App
print("🍕 Welcome to the Pizza Ordering App!")
print("Choose your pizza type:")
print("1. Margherita - ₹200")
print("2. Pepperoni - ₹250")
print("3. Veggie - ₹230")
print("4. BBQ Chicken - ₹280")
pizza_type = input("Enter the number for the pizza type: ")
if pizza_type == "1":
pizza_name = "Margherita"
pizza_price = 200
elif pizza_type == "2":
pizza_name = "Pepperoni"
pizza_price = 250
elif pizza_type == "3":
pizza_name = "Veggie"
pizza_price = 230
elif pizza_type == "4":
pizza_name = "BBQ Chicken"
pizza_price = 280
else:
print("❌ Invalid choice.")
pizza_price = 0
if pizza_price > 0:
print("\nChoose your pizza size:")
print("1. Small - ₹0 (Base price)")
print("2. Medium - ₹50 extra")
print("3. Large - ₹100 extra")
size_choice = input("Enter 1, 2, or 3: ")
if size_choice == "1":
size_price = 0
size_name = "Small"
elif size_choice == "2":
size_price = 50
size_name = "Medium"
elif size_choice == "3":
size_price = 100
size_name = "Large"
else:
print("❌ Invalid size choice.")
size_price = 0
if size_price >= 0:
print("\nChoose your toppings (₹30 each):")
print("1. Olives")
print("2. Mushrooms")
print("3. Jalapeños")
print("4. Extra Cheese")
olives = input("Do you want Olives? (y/n): ").lower()
mushrooms = input("Do you want Mushrooms? (y/n): ").lower()
jalapenos = input("Do you want Jalapeños? (y/n): ").lower()
extra_cheese = input("Do you want Extra Cheese? (y/n): ").lower()
toppings_price = 0
selected_toppings = ""
if olives == "y":
toppings_price += 30
selected_toppings += "Olives, "
if mushrooms == "y":
toppings_price += 30
selected_toppings += "Mushrooms, "
if jalapenos == "y":
toppings_price += 30
selected_toppings += "Jalapeños, "
if extra_cheese == "y":
toppings_price += 30
selected_toppings += "Extra Cheese, "
if selected_toppings:
selected_toppings = selected_toppings[:-2] # Remove trailing comma and space
if pizza_price > 0 and size_price >= 0:
total_price = pizza_price + size_price + toppings_price
print("\n💳 Choose Payment Method:")
print("1. Cash on Delivery")
print("2. UPI")
print("3. Card Payment")
payment_method = input("Enter 1, 2, or 3: ")
if payment_method == "1":
payment_mode = "Cash on Delivery"
elif payment_method == "2":
payment_mode = "UPI"
elif payment_method == "3":
payment_mode = "Card Payment"
else:
payment_mode = "Invalid choice"
print("\n🧾 Final Bill")
print(f"Pizza: {pizza_name} ({size_name})")
print(f"Toppings: {selected_toppings if selected_toppings else 'None'}")
print(f"Total: ₹{total_price}")
print(f"Payment Mode: {payment_mode}")
print("\n✅ Thank you for ordering with us! Your pizza is on the way!")
else:
print("❌ Please restart and choose a valid pizza type.")
🍕 Welcome to the Pizza Ordering App! Choose your pizza type: 1. Margherita - ₹200 2. Pepperoni - ₹250 3. Veggie - ₹230 4. BBQ Chicken - ₹280 Enter the number for the pizza type: 3 Choose your pizza size: 1. Small - ₹0 (Base price) 2. Medium - ₹50 extra 3. Large - ₹100 extra Enter 1, 2, or 3: 2 Choose your toppings (₹30 each): 1. Olives 2. Mushrooms 3. Jalapeños 4. Extra Cheese Do you want Olives? (y/n): y Do you want Mushrooms? (y/n): n Do you want Jalapeños? (y/n): y Do you want Extra Cheese? (y/n): y 💳 Choose Payment Method: 1. Cash on Delivery 2. UPI 3. Card Payment Enter 1, 2, or 3: 2 🧾 Final Bill Pizza: Veggie (Medium) Toppings: Olives, Jalapeños, Extra Cheese Total: ₹370 Payment Mode: UPI ✅ Thank you for ordering with us! Your pizza is on the way!
# Application 6 - College Admission Form
print("🎓 Welcome to the College Admission Form!")
print("\nPlease provide your personal details:")
name = input("Enter your full name: ")
age = input("Enter your age: ")
gender = input("Enter your gender (M/F/O): ")
email = input("Enter your email address: ")
contact = input("Enter your contact number: ")
print("\nPlease provide your academic details:")
high_school = input("Enter your high school name: ")
graduation_percentage = input("Enter your graduation percentage (if applicable): ")
print("\nChoose the course you'd like to apply for:")
print("1. Computer Science - ₹10000")
print("2. Mechanical Engineering - ₹12000")
print("3. Business Administration - ₹9000")
print("4. Civil Engineering - ₹11000")
course_choice = input("Enter the number for the course: ")
if course_choice == "1":
course_name = "Computer Science"
course_fee = 10000
elif course_choice == "2":
course_name = "Mechanical Engineering"
course_fee = 12000
elif course_choice == "3":
course_name = "Business Administration"
course_fee = 9000
elif course_choice == "4":
course_name = "Civil Engineering"
course_fee = 11000
else:
print("❌ Invalid course selection.")
course_name = ""
course_fee = 0
hostel_option = input("\nDo you want to apply for hostel accommodation? (yes/no): ").lower()
if hostel_option == "yes":
hostel_fee = 5000
else:
hostel_fee = 0
if course_fee > 0:
total_fee = course_fee + hostel_fee
print("\n💳 Choose Payment Method:")
print("1. Credit/Debit Card")
print("2. Net Banking")
print("3. UPI")
payment_choice = input("Enter 1, 2, or 3: ")
if payment_choice == "1":
payment_method = "Credit/Debit Card"
elif payment_choice == "2":
payment_method = "Net Banking"
elif payment_choice == "3":
payment_method = "UPI"
else:
print("❌ Invalid payment method.")
payment_method = "Invalid choice"
if course_fee > 0 and payment_method != "Invalid choice":
print("\n📝 Application Summary")
print(f"Name: {name}")
print(f"Age: {age}")
print(f"Gender: {gender}")
print(f"Email: {email}")
print(f"Contact Number: {contact}")
print(f"High School: {high_school}")
print(f"Graduation Percentage: {graduation_percentage}%")
print(f"Course Applied: {course_name}")
print(f"Hostel Accommodation: {'Yes' if hostel_option == 'yes' else 'No'}")
print(f"Total Fee: ₹{total_fee}")
print(f"Payment Method: {payment_method}")
confirm = input("\nDo you confirm your application? (yes/no): ").lower()
if confirm == "yes":
print("\n✅ Your application has been successfully submitted! You will receive a confirmation email shortly.")
else:
print("\n❌ Your application has been canceled.")
else:
print("❌ Please start again and choose valid options.")
🎓 Welcome to the College Admission Form! Please provide your personal details: Enter your full name: Ziva Dhoni Enter your age: 18 Enter your gender (M/F/O): F Enter your email address: zivadhoni@gmail.com Enter your contact number: 1234567890 Please provide your academic details: Enter your high school name: MS Dhoni Global School Enter your graduation percentage (if applicable): 97% Choose the course you'd like to apply for: 1. Computer Science - ₹10000 2. Mechanical Engineering - ₹12000 3. Business Administration - ₹9000 4. Civil Engineering - ₹11000 Enter the number for the course: 1 Do you want to apply for hostel accommodation? (yes/no): no 💳 Choose Payment Method: 1. Credit/Debit Card 2. Net Banking 3. UPI Enter 1, 2, or 3: 2 📝 Application Summary Name: Ziva Dhoni Age: 18 Gender: F Email: zivadhoni@gmail.com Contact Number: 1234567890 High School: MS Dhoni Global School Graduation Percentage: 97%% Course Applied: Computer Science Hostel Accommodation: No Total Fee: ₹10000 Payment Method: Net Banking Do you confirm your application? (yes/no): yes ✅ Your application has been successfully submitted! You will receive a confirmation email shortly.
# Application 7 - IPL Ticket Booking App
print("🏏 Welcome to the IPL Ticket Booking Application!")
print("\nPlease provide your personal details:")
name = input("Enter your full name: ")
email = input("Enter your email address: ")
contact = input("Enter your contact number: ")
print("\nChoose the IPL match you'd like to attend:")
print("1. Chennai Super Kings vs Mumbai Indians")
print("2. Royal Challengers Bangalore vs Delhi Capitals")
print("3. Kolkata Knight Riders vs Rajasthan Royals")
print("4. Sunrisers Hyderabad vs Punjab Kings")
match_choice = input("Enter the number for the match: ")
if match_choice == "1":
match_name = "Mumbai Indians vs Chennai Super Kings"
match_date = "01-05-2025"
match_fee = 1000
elif match_choice == "2":
match_name = "Royal Challengers Bangalore vs Delhi Capitals"
match_date = "02-05-2025"
match_fee = 1200
elif match_choice == "3":
match_name = "Kolkata Knight Riders vs Rajasthan Royals"
match_date = "03-05-2025"
match_fee = 1100
elif match_choice == "4":
match_name = "Sunrisers Hyderabad vs Punjab Kings"
match_date = "04-05-2025"
match_fee = 950
else:
print("❌ Invalid match selection.")
match_name = ""
match_date = ""
match_fee = 0
if match_fee > 0:
print("\nChoose your ticket type:")
print("1. General Admission - ₹" + str(match_fee))
print("2. VIP - ₹1500")
print("3. Platinum - ₹2000")
ticket_choice = input("Enter 1, 2, or 3: ")
if ticket_choice == "1":
ticket_type = "General Admission"
ticket_price = match_fee
elif ticket_choice == "2":
ticket_type = "VIP"
ticket_price = 1500
elif ticket_choice == "3":
ticket_type = "Platinum"
ticket_price = 2000
else:
print("❌ Invalid ticket type selection.")
ticket_type = ""
ticket_price = 0
if ticket_price > 0:
print("\n💳 Choose Payment Method:")
print("1. Credit/Debit Card")
print("2. Net Banking")
print("3. UPI")
payment_choice = input("Enter 1, 2, or 3: ")
if payment_choice == "1":
payment_method = "Credit/Debit Card"
elif payment_choice == "2":
payment_method = "Net Banking"
elif payment_choice == "3":
payment_method = "UPI"
else:
print("❌ Invalid payment method.")
payment_method = "Invalid choice"
if ticket_price > 0 and payment_method != "Invalid choice":
print("\n📝 Ticket Booking Summary")
print(f"Name: {name}")
print(f"Email: {email}")
print(f"Contact Number: {contact}")
print(f"Match: {match_name}")
print(f"Match Date: {match_date}")
print(f"Ticket Type: {ticket_type}")
print(f"Total Price: ₹{ticket_price}")
print(f"Payment Method: {payment_method}")
confirm = input("\nDo you confirm your ticket booking? (yes/no): ").lower()
if confirm == "yes":
print("\n✅ Your ticket has been successfully booked! Enjoy the match!")
else:
print("\n❌ Your ticket booking has been canceled.")
else:
print("❌ Please restart and choose valid options.")
🏏 Welcome to the IPL Ticket Booking Application! Please provide your personal details: Enter your full name: MS Dhoni Enter your email address: mahi@gmail.com Enter your contact number: 9876543210 Choose the IPL match you'd like to attend: 1. Chennai Super Kings vs Mumbai Indians 2. Royal Challengers Bangalore vs Delhi Capitals 3. Kolkata Knight Riders vs Rajasthan Royals 4. Sunrisers Hyderabad vs Punjab Kings Enter the number for the match: 1 Choose your ticket type: 1. General Admission - ₹1000 2. VIP - ₹1500 3. Platinum - ₹2000 Enter 1, 2, or 3: 2 💳 Choose Payment Method: 1. Credit/Debit Card 2. Net Banking 3. UPI Enter 1, 2, or 3: 1 📝 Ticket Booking Summary Name: MS Dhoni Email: mahi@gmail.com Contact Number: 9876543210 Match: Mumbai Indians vs Chennai Super Kings Match Date: 01-05-2025 Ticket Type: VIP Total Price: ₹1500 Payment Method: Credit/Debit Card Do you confirm your ticket booking? (yes/no): yes ✅ Your ticket has been successfully booked! Enjoy the match!