# Clone by Aaqid Masoodi of:
# "Mini Project 1" by Python For Leaving Cert
# https://ancientbrain.com/world.php?world=6338638486
# Please leave this clone trail here.
"""
Mini Project: Creative Band Name Generator
Purpose: Explore multiple inputs, strings, arithmetic and string methods
Output: Generates a unique band name using user inputs
"""
# 1. Get user inputs
city = await input("Which city are you from? ") # string
pet = await input("What is the name of your pet? ") # string
favorite_number = await input("Enter your favorite number: ") # string initially
color = await input("What's your favorite color? ") # string
hobby = await input("What's your favorite hobby? ") # string
# 2. Convert favorite_number to integer for arithmetic
favorite_number = int(favorite_number)
double_number = favorite_number * 2
# 3. Create the band name safely
# Take first 3 letters of city, last 3 letters of pet and uppercase
part1 = city[:3].upper()
part2 = pet[-3:].upper()
# Capitalize
color = color.capitalize()
hobby = hobby.capitalize()
# Concatenate all parts and convert number to string
band_name = part1 + part2 + " " + color + " " + hobby + " " + str(double_number)
# 4. Display the band name
print(f"Your band name could be: {band_name}")