# greetings.py # PUT YOUR NAME AND NETID HERE # Feb, 2018 # Skeleton by Prof Lillian Lee """Library of functions producing greetings""" def multi_hi(name,num): """Returns a string of the form: "hi " repeated times, followed by , followed by "!". Preconditions (i.e., assumptions this function makes about its input): name is a string num is a positive int """ return "hi "*num + name + "!" def rand_hi(name): """SEE LAB HANDOUT. Precondition: name is a string""" reps = 0 # ***placeholder: replace as instructed*** def natural_hi(): """SEE LAB HANDOUT""" input_name = input('Please enter your name: ')