def is_apple(): """ Ask the user for a fruit Print if it is an apple or not """ # YOUR CODE HERE fruit = input("Enter a fruit") def name_shape(): """ Ask the user for a number of sides between 3 to 6. 4 -> square | 6 -> hexagon. Print out the name of the shape """ # YOUR CODE HERE def vowel_or_consonant(): """ Ask the user for a letter Print out if it is a vowel or cosonant. What about y? """ # YOUR CODE HERE def num_students(): """ Ask the user for a number of students If over 30, say too many kids! If 23, say there are 23 kids If 20 or less, say DGT is not popular :/ """ # YOUR CODE HERE def buying_pizzas(): """ Ask the user for how many pizzas to buy We only have $100, each pizza cost 12.50 If it is possible, print order made Else print it's not enough and how much we are missing' """ # YOUR CODE HERE def multi_quiz(): """ Ignore this, check out the instructions on the homepage. """