Skip to content

Instantly share code, notes, and snippets.

@samister2k
Last active January 26, 2021 10:57
Show Gist options
  • Save samister2k/2efeaf09c0ca804ede4aa46f64938df4 to your computer and use it in GitHub Desktop.
Save samister2k/2efeaf09c0ca804ede4aa46f64938df4 to your computer and use it in GitHub Desktop.
Business Studies keyword generator
print("welcome to the Business keyword generator")
print("these are your options as we are still working on this website")
print("Consumer")
print("Trader")
print("Brand name")
print("Contract")
print("Consideration")
print("Implied conditions")
print("3Rs")
print("Gurantee or Warranty")
print("Trade association")
print("Ombudsman")
while True:
choice=input("Type the keyword you want to know")
if choice=="Consumer":
print("A consumer is a person who buys goods and services for personal use from soemone whose business it is to sell goods and services.")
elif choice=="Trader":
print("A trader buys goods to sell them.")
elif choice=="Brand name":
print("A brand name is unique name given to a product to distingush it from similar products made by other companies")
elif choice=="Contract":
print("A contract is a legally binding agreement.")
elif choice=="Consideration":
print("Consideration is something of value that passes between the parties to a contract.")
elif choice=="Implied conditions":
print("Implied conditions are conditions that are not written into a contract but are legally demmed to be part of the contract.")
elif choice=="3Rs":
print("The 3Rs of consumers' rights are: refund, replacement and repair.")
elif choice=="Gurantee or Warranty":
print("A gurantee or warranty is a written undertaking that the manufactuer, or somebody appointed by the manufacture, will repair or replace an item within a started period of time after the purchase date.")
elif choice=="Trade association":
print("A trade association is a organisation representing all or most of the producers or sellers in a particular industry.")
elif choice=="Ombudsman":
print("An ombudsman is a person responsible for investigating and resolving complaints from consumers or other members of the public against, institution, or other organisation.")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment