12 lines
372 B
Python
12 lines
372 B
Python
# File: Pease-hw1a.py
|
|
# Author: PEASE, NICHOLAS
|
|
# Date: 12 SEP 2022
|
|
# Section: 1002-LAB
|
|
# E-mail: nicholas.pease@maine.edu
|
|
# Description:
|
|
# Getting to know someone in my major programatically
|
|
# Collaboration:
|
|
# I discussed this homework with no one
|
|
|
|
name = input("Hi friend, What's your name? ")
|
|
print("Hi, " + name + " I'm happy to meet you\nLet's go get ice cream") |