79737001

Date: 2025-08-16 06:59:47
Score: 0.5
Natty:
Report link

from docx import Document

# File path for Word file

file_path_docx = "/mnt/data/student_kit_pamphlet.docx"

# Create a new Word document

doc = Document()

# Title

doc.add_heading("πŸŽ’ Smart Student Kit Offer πŸŽ’", level=1)

doc.add_heading("Special Deal for Friends πŸ‘©β€πŸŽ“πŸ‘¨β€πŸŽ“πŸ‘©β€πŸŽ“", level=2)

# Intro

doc.add_paragraph("πŸ’‘ Why waste money buying 10 different items? Get everything you need in ONE KIT – perfect for college & school life.")

# What's Inside

doc.add_heading("πŸ“¦ What’s Inside the Student Kit?", level=3)

doc.add_paragraph(

"βœ” All-in-One Stationery Pen (pen + pencil + eraser in 1)\\n" 

"βœ” Mini Notebook / Exam Pad\\n" 

"βœ” Highlighter (1 pc)\\n" 

"βœ” Sticky Notes\\n" 

"βœ” Ruler (15 cm)\\n" 

"βœ” Mini Geometry Tools\\n" 

"βœ” Eraser + Sharpener Combo\\n" 

"βœ” ID Card Holder (lanyard)\\n" 

"✨ Free Motivational Bookmark" 

)

# Price

doc.add_heading("πŸ’° Price", level=3)

doc.add_paragraph(

"Single Kit: β‚Ή499\\n" 

"Group Offer: Buy 3 Kits with Friends β†’ Just β‚Ή450 each!" 

)

# Why Students Love It

doc.add_heading("πŸ“’ Why Students Love It?", level=3)

doc.add_paragraph(

"βœ… Saves money πŸ’Έ\\n" 

"βœ… All essentials in one pack πŸŽ“\\n" 

"βœ… Perfect for exams & daily study ✍️\\n" 

"βœ… Cool design & handy size πŸŽ’" 

)

# How to Order

doc.add_heading("πŸ“ How to Order?", level=3)

doc.add_paragraph(

"πŸ‘‰ Call or WhatsApp:\\n" 

"1. 8780233340\\n" 

"2. 6352204540\\n" 

"3. 8849350933" 

)

# Delivery info

doc.add_paragraph("🚚 Free delivery inside campus | COD Available")

# Limited offer

doc.add_paragraph("⚑ Hurry! Only 50 Kits available this week!")

# Save Word file

doc.save(file_path_docx)

file_path_docx

Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Jaydeep Borisagar