Question

In: Computer Science

Implement the following function by replacing the pass keyword with your code. Do not change the...

Implement the following function by replacing the pass keyword with your code. Do not change the spelling of the function name or the parameter list.

def order_pie():

Important notes:

  • Ask ONLY these questions, in EXACTLY this order. Do not ask more questions than are necessary to arrive at the right answer.
  • You can expect the input values to be 'yes' or 'no'. For this assignment you do not have to worry about other spellings or capitalization.
  • The return values must be lists and must have the correct number of items. Do not add anything extra.
  • The return values must have every item spelled correctly.
  • The return values must have every item in the order shown.

def order_pie(): pass

# There are only 7 possible sequences of questions.

# The sequence of inputs determines the output.

# Expected results:

# 'yes', 'yes' ---> [ 'apple pie', 'heated', 'strawberry ice cream', 'on the side' ]

# 'yes', 'no' ---> [ 'apple pie', 'heated', 'strawberry ice cream' ]

# 'no', 'yes', 'yes' ---> [ 'apple pie', 'heated', 'vanilla ice cream', 'on the side' ]

# 'no', 'yes', 'no' ---> [ 'apple pie', 'heated', 'vanilla ice cream' ]

# 'no', 'no', 'yes', 'yes' ---> [ 'apple pie', 'heated', 'whipped cream' ]

# 'no', 'no', 'yes', 'no' ---> [ 'apple pie' ]

# 'no', 'no', 'no' ---> [ 'apple pie' ]

Solutions

Expert Solution

def order_pie():
l=list(map(str,input().split()))
if(len(l)==2):
if(l.count('yes')==2):
return ['apple pie', 'heated', 'strawberry ice cream', 'on the side' ]
else:
return [ 'apple pie', 'heated', 'strawberry ice cream' ]
elif(len(l)==3):
if(l.count('yes')==2 and l.count('no')==1):
return [ 'apple pie', 'heated', 'vanilla ice cream', 'on the side' ]
elif(l.count('yes')==1 and l.count('no')==2):
return [ 'apple pie', 'heated', 'vanilla ice cream' ]
elif(l.count('no')==3):
return [ 'apple pie' ]
elif(len(l)==4):
if(l.count('no')==2 and l.count('yes')==2):
return [ 'apple pie', 'heated', 'whipped cream' ]
elif(l.count('no')==3 and l.count('yes')==1):
return [ 'apple pie' ]
print(order_pie())


Related Solutions

Please make my Code working and pass the test but do NOT change anything in main...
Please make my Code working and pass the test but do NOT change anything in main function, thank you. #include <iostream> using namespace std; void sort(int *A, int n){    for(int passes = 0;passes < 2;passes++) { // shift can have only two values either 0 or 16, used for shifting purpose int shift = passes * 16; int N = 1<<(16 + 1);    // Temporary array for storing frequency of upper or lower 16 bits int temp[N];   ...
Your code needs to do the following: Create a function called pigLatin that accepts a string...
Your code needs to do the following: Create a function called pigLatin that accepts a string of English words in the parameter sentence and returns a string of those words translated into Pig Latin. English is translated to Pig Latin by taking the first letter of every word, moving it to the end of the word and adding ‘ay’. For example the sentence “The quick brown fox” becomes “hetay uickqay rownbay oxfay”. You may assume the words in the parameter...
implement c++ Quicksort using median of 3 as pivot. this also pass comparator as a function...
implement c++ Quicksort using median of 3 as pivot. this also pass comparator as a function param so it can sort vector in increasing or decreasing order based on the comparator passed. the test code uses std::less comparator. #ifndef QSORT_H #define QSORT_H #include #include using namespace std; template T median_of_three(T& a, T& b, T& c, TComparator comparator) { } template size_t partition(vector& vec, TComparator& comparator, size_t low, size_t high) { // TODO: implement. } template void QuickSort(vector& vec, TComparator comparator,size_t...
1. Implement a method that meets the following requirements: (a) Do not reuse any code for...
1. Implement a method that meets the following requirements: (a) Do not reuse any code for the following: i. Try to write this method with as few lines of code as you can ii. Sorts a group of three integers, x,y and z, into decreasing order (they do not have to be in a sequence). iii. Assume the value in x is less than the value in z. You can also assume there are no duplicates among x, y and...
Implement the following functions in the given code: def babylonian_square_root(N, estimate, precision): This function is provided...
Implement the following functions in the given code: def babylonian_square_root(N, estimate, precision): This function is provided for you to use: def close_enough(x, y, maximum_allowable_difference): My biggest piece of advice to you is to go one line at a time and check your return values after each little change you make. Starter code: # There are different ways of implementing the same idea in math. # Today we will explore a simple way to calculate square roots. # # # #...
Run the following code and answer the following questions: (a) How do accuracy change with changing...
Run the following code and answer the following questions: (a) How do accuracy change with changing the tree maximum depth? [Your answer] (b) What are the ways to reduce overfitting in a decision tree? [Your answer] from sklearn import datasets import numpy as np from sklearn.model_selection import train_test_split from sklearn.tree import plot_tree iris = datasets.load_iris() X = iris.data[:, [2, 3]] y = iris.target X_train, X_test, y_train, y_test = train_test_split( X, y, test_size=0.3, random_state=1, stratify=y) tree = DecisionTreeClassifier(criterion='entropy', max_depth=10, random_state=1) tree.fit(X_train,...
Assemby language - MIPS Your assembly should implement the C code directly – i.e.,do not ’optimize’...
Assemby language - MIPS Your assembly should implement the C code directly – i.e.,do not ’optimize’ the C code to change the order of operations or reduce computations. Write MIPS assembly code implementing the following C/C++ statement: y = 13 - 11*x; One way of doing the multiply without a multiply instruction is by using many add instructions (x+x+...+x). For this problem you should do it with fewer additions. Hint: We know how to express any integer as a sum...
Write a python code to Design and implement a function with no input parameter which reads...
Write a python code to Design and implement a function with no input parameter which reads a number from input (like 123). Only non-decimal numbers are valid (floating points are not valid). The number entered by the user should not be divisible by 10 and if the user enters a number that is divisible by 10 (like 560), it is considered invalid and the application should keep asking until the user enters a valid input. Once the user enters a...
Change can be difficult to implement. Now that you are almost finished with your change project,...
Change can be difficult to implement. Now that you are almost finished with your change project, if you were to implement your project in your clinical practice, what type of resistance do you expect from staff? List at least three ways that you can lessen the resistance you may encounter to help ensure the success of your project.
fix this code in python and show me the output. do not change the code import...
fix this code in python and show me the output. do not change the code import random #variables and constants MAX_ROLLS = 5 MAX_DICE_VAL = 6 #declare a list of roll types ROLLS_TYPES = [ "Junk" , "Pair" , "3 of a kind" , "5 of a kind" ] #set this to the value MAX_ROLLS pdice = [0,0,0,0,0] cdice = [0,0,0,0,0] #set this to the value MAX_DICE_VAL pdice = [0,0,0,0,0,0] cdice = [0,0,0,0,0,0] #INPUT - get the dice rolls i...
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT