# Prompt was: Write a beginner oriented .py file for the MLH beginners week hackathon! # Python Script for MLH Beginners Week Hackathon # Define a list of names names = ["Alice", "Bob", "Charlie", "Diana"] # Loop through each name in the list for name in names: # Print a personalized greeting greeting = "Hello, " + name + "! Welcome to MLH Beginners Week Hackathon." print(greeting) # End of script