""" Programming in Python for Social Science Phillip Brooker 8. 4. INPUTS AND INTERFACES """ #Below is a super simple script that asks you for your name, then takes the #data you give it and reformulates it as a string to be printed out. name = input("Hi, what is your name?: ") print("OK, " + name + ", nice to meet you! ...Well, see ya!")