#!/usr/bin/env python3; ############################################################################### # This program demonstrates how to prompt the user for input. # # Copyright © 2020 Richard Lesh. All rights reserved. ############################################################################### import Utils # Begin Main name = Utils.prompt("What is your name? ") favoriteColor = Utils.prompt("What is your favorite color? ") print("Hello, {0:s}! I like {1:s} too!".format(name, favoriteColor))