Brand Name Generator Program with Python
Make you own brand name with B-N-G program
Hello world !
Coming up with the cool name for your brand is not easy. It's a never -ending state of analysis. If you need help creating a name for your small business, you've came to right place
In this blog we will learn how to create a brand name generator program. We will implement in python.
What will be covered:
1. Printing
2. Input
3. String Manipulation
4. Variable
Let us start with coding
1. Start by greeting the user:
print("Hi, welcome to Brand Name Generator Program")
NOTE:
print() -> print function is used to display the message on the screen.
string-> sequence of one/ more characters enclosed with single/double quotes.
2. Ask the user for city they grew up in?
city_name=input("What is the name of the city you grew up in?\n")
NOTE:
- input() -> input function is used to take user choice .
- city_name is called as variable, holding the value given by user.
- \n is newline character use to bring cursor on new line.
3. Ask the user for the name of their pet?
pet_name=input("What is the name of your pet\n")
4. With string concatenation combine both city_name with pet_name to generate brand name
print("Your band name could be" +city_name + pet_name)
With these steps, we have successfully created a random password generator project using python. That's it!
I hope you find it helpful.
You can find the copy of program on my github : https://github.com/Samra-qur/100-Days-Coding
Please connect with me on my LinkedIn :
https://www.linkedin.com/in/samra-qureshi-a60828194/