DEV Community

Shaheryar
Shaheryar

Posted on • Updated on

Brand Name Generator in Python

We are going to create a Brand name generator project in python, it is a fairly simple project for beginners.

Users will answer some questions and our program will generate a Brand name for them.

Code

city = input("What is your city name?\n")
pet = input("What is your pet name?\n")
print("Your Band Name can be " + city + " " + pet)
Enter fullscreen mode Exit fullscreen mode

You can test the code by going on this link.

https://www.programiz.com/python-programming/online-compiler/

Top comments (0)