# Smart Sentence Builder
# Create and analyse your own sentence

name = input("Enter your name: ")
food = input("Enter your favourite food: ")
place = input("Enter a place you like: ")

# Build a sentence using string construction
sentence = f"{name} loves eating {food} in {place}."
print("\nYour sentence:", sentence)

# Analyse and modify the strings
print("\n--- Sentence Analysis ---")
print("Your name has", len(name), "letters.")
print("Food in uppercase:", food.upper())
print("Does your name start with A?", name.startswith("A"))
print("Does the place contain 'o'?", "o" in place)

# 1. Test out different types of string analysis (lower, endswith)
# 2. Customise the input variables and output print statements