import textwrap
def business_creator():
print("=" * 60)
print(" π BUSINESS CREATOR AI")
print("=" * 60)
print("I will help you turn your idea into a business plan.")
print("Type 'exit' anytime to quit.\n")
# Basic information
business_name = input("π’ What is your business name? ")
if business_name.lower() == "exit":
return
idea = input("π‘ What business do you want to start? ")
if idea.lower() == "exit":
return
budget = input("π° What is your starting budget (βΉ)? ")
location = input("π Where will you operate? ")
target_customer = input("π₯ Who are your target customers? ")
# Business plan
print("\n" + "=" * 60)
print("π YOUR BUSINESS PLAN")
print("=" * 60)
print(f"""
Business Name : {business_name}
Business Type : {idea}
Starting Budget : βΉ{budget}
Location : {location}
Target Customers : {target_customer}
""")
# Business analysis
print("π BUSINESS ANALYSIS")
print("-" * 60)
print(f"""
-
Business Model
β’ Sell products/services related to {idea}
β’ Build an online + offline presence
β’ Focus on repeat customers
β’ Start small and scale gradually
-
Target Market
β’ Primary customers: {target_customer}
β’ Location: {location}
β’ Use Instagram, WhatsApp and Google to reach customers
-
Revenue Sources
β’ Direct product/service sales
β’ Online sales
β’ Premium products/services
β’ Repeat customers
β’ Partnerships
-
Marketing Strategy
β’ Instagram Reels
β’ Influencer marketing
β’ WhatsApp marketing
β’ Google Business Profile
β’ Referral program
β’ Limited-time offers
-
Growth Strategy
Phase 1 β Launch
Phase 2 β Get first 100 customers
Phase 3 β Improve products/services
Phase 4 β Build a strong brand
Phase 5 β Expand to new locations
-
Important Metrics
β’ Monthly Revenue
β’ Monthly Profit
β’ Customer Acquisition Cost
β’ Average Order Value
β’ Repeat Customer Rate
β’ Cash Flow
""")
Simple financial calculation
try:
budget_value = float(budget.replace(",", "").replace("βΉ", ""))
marketing = budget_value * 0.10
inventory = budget_value * 0.40
operations = budget_value * 0.30
emergency = budget_value * 0.20
print("\nπ° SUGGESTED BUDGET ALLOCATION")
print("-" * 60)
print(f"Inventory / Product : βΉ{inventory:,.0f}")
print(f"Operations : βΉ{operations:,.0f}")
print(f"Marketing : βΉ{marketing:,.0f}")
print(f"Emergency Reserve : βΉ{emergency:,.0f}")
except ValueError:
print("\nβ οΈ Budget wasn't entered as a number.")
print("\n" + "=" * 60)
print("π― BUSINESS CREATOR RECOMMENDATION")
print("=" * 60)
print(textwrap.dedent(f"""
Your first goal should not be to become a huge company immediately.
Focus on:
β Validating your {idea} idea
β Getting your first paying customers
β Understanding your customers
β Keeping expenses controlled
β Reinvesting profits
β Building a recognizable brand
π Start small β Prove the idea β Generate profit β Scale.
"""))
print("=" * 60)
print("Thank you for using Business Creator AI!")
print("=" * 60)
Start the chatbot
if name == "main":
business_creator()
import textwrap
def business_creator():
print("=" * 60)
print(" π BUSINESS CREATOR AI")
print("=" * 60)
print("I will help you turn your idea into a business plan.")
print("Type 'exit' anytime to quit.\n")
Business Name : {business_name}
Business Type : {idea}
Starting Budget : βΉ{budget}
Location : {location}
Target Customers : {target_customer}
""")
Business Model
β’ Sell products/services related to {idea}
β’ Build an online + offline presence
β’ Focus on repeat customers
β’ Start small and scale gradually
Target Market
β’ Primary customers: {target_customer}
β’ Location: {location}
β’ Use Instagram, WhatsApp and Google to reach customers
Revenue Sources
β’ Direct product/service sales
β’ Online sales
β’ Premium products/services
β’ Repeat customers
β’ Partnerships
Marketing Strategy
β’ Instagram Reels
β’ Influencer marketing
β’ WhatsApp marketing
β’ Google Business Profile
β’ Referral program
β’ Limited-time offers
Growth Strategy
Phase 1 β Launch
Phase 2 β Get first 100 customers
Phase 3 β Improve products/services
Phase 4 β Build a strong brand
Phase 5 β Expand to new locations
Important Metrics
β’ Monthly Revenue
β’ Monthly Profit
β’ Customer Acquisition Cost
β’ Average Order Value
β’ Repeat Customer Rate
β’ Cash Flow
""")
Simple financial calculation
try:
budget_value = float(budget.replace(",", "").replace("βΉ", ""))
except ValueError:β οΈ Budget wasn't entered as a number.")
print("\n
print("\n" + "=" * 60)
print("π― BUSINESS CREATOR RECOMMENDATION")
print("=" * 60)
print(textwrap.dedent(f"""
Your first goal should not be to become a huge company immediately.
Focus on:
β Validating your {idea} idea
β Getting your first paying customers
β Understanding your customers
β Keeping expenses controlled
β Reinvesting profits
β Building a recognizable brand
π Start small β Prove the idea β Generate profit β Scale.
"""))
print("=" * 60)
print("Thank you for using Business Creator AI!")
print("=" * 60)
Start the chatbot
if name == "main":
business_creator()