100 Days of Code (Python Course by Angela) Project 1
Project 1 Startup Name Generator
Introduction
With the Startup Name Generator, you have a powerful tool at your disposal to create a compelling brand identity for your new venture. Whether you're just starting out or rebranding an existing business, our project will revolutionize the way you approach the naming process. Get ready to unleash the potential of your startup with a memorable, captivating, and market-ready name. Try it today and embark on your journey to entrepreneurial success!
Source code
# Print Name of My project
print("Welcome to Startup Name Generator")
startupname = input("Enter Type of Startup: ie Education, Textile etc ")
favcolor = input("Enter Your Fav Color: ")
suggestedname = f'{favcolor} {startupname}'
# Using formated string to show the result.
print(f'Your startup name should be {suggestedname} Center')
Check how this code works