Skip to content

Instantly share code, notes, and snippets.

View Kiser360's full-sized avatar

Devin Kiser Kiser360

View GitHub Profile
@Kiser360
Kiser360 / hmwk.py
Created April 15, 2018 17:58
CPT-135 Chap 7 Assignment
def getInput(prompt):
thing = input(prompt)
print('You entered: %s\n' % thing)
return thing
def getInputs():
title = getInput('Enter a title for the data:\n')
h1 = getInput('Enter the column 1 header:\n')
h2 = getInput('Enter the column 2 header:\n')