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()
Reactions are currently unavailable
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:
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()