DEV Community

Cover image for YouTube Channel Name Generator
Safe
Safe

Posted on

YouTube Channel Name Generator

Hello World!

I wanted to share with you my first Python project!
It's called: YouTube Channel Name Generator

# Welcome message
print ("Welcome to the YouTube Channel Name Generator:")

# Ask the user to put their nickname
nick_name = input ("What is your nickname?\n")

# Ask for their YT channel's topic
topic = input ("What is your channel about?\n")

# The result of YT channel name suggestion
print(f"You could name your channel ({topic} with {nick_name})")
Enter fullscreen mode Exit fullscreen mode

Top comments (0)