Jan-15-2024, 11:35 PM
This wasn't assessment given by an instructor in class it was to test for a tech talent development program through a recruiter etc so there's no way of asking for an explanation on what's incorrect.
goal: Stack plates, one on top of another. A larger plate cannot be stacked on top of a smaller plate. Plates are ordered from the largest at the bottom, to the smallest at the top.
The plate "stack" is represented as a Python list. The bottom plate is the first index. The stack can grow to any size. A plate is represented by a positive integer, which is also the plate's size.
High Level Requirements: Add a plate: add a plate to the top of the stack. Print plates: display the stack of plates in the terminal. Remove plates: remove 1-to-n plates from the top of the stack.
Requirements Add a Plate Add a plate to the top of the stack. Plates are represented by a positive integer. If the plate is less than or equal to zero, issue a warning and don't add the plate.
If there are no plates on the stack, add it.
The plate "below" must be greater than or equal to the current plate size. If the current plate is too big, issue a warning and don't add the plate. If not, add it to the top of the stack.
Prints plates to the terminal.
Plates should stack vertically, with the largest plate on the bottom and the smallest plate on the top.
If there are no plates, display a message.
Remove Plates Remove a given number of plates from the top of the stack. The value should be a positive integer. If the value is less than or equal to zero, reject the operation and issue a warning.
If there are too many plates selected, reject the operation and issue a warning. Otherwise, remove plates from the stack and print a message.
Technical Requirements Use a Python list to track plates. Don't define the list inside a function. Keep it at file scope. Each menu item should be a function. You can add additional utility functions as well. (This isn't a hard requirement. You can solve the problem any way you see fit.) To collect positive integers from the user, convert the string value from the input function to an integer using the int function.
goal: Stack plates, one on top of another. A larger plate cannot be stacked on top of a smaller plate. Plates are ordered from the largest at the bottom, to the smallest at the top.
The plate "stack" is represented as a Python list. The bottom plate is the first index. The stack can grow to any size. A plate is represented by a positive integer, which is also the plate's size.
High Level Requirements: Add a plate: add a plate to the top of the stack. Print plates: display the stack of plates in the terminal. Remove plates: remove 1-to-n plates from the top of the stack.
Requirements Add a Plate Add a plate to the top of the stack. Plates are represented by a positive integer. If the plate is less than or equal to zero, issue a warning and don't add the plate.
If there are no plates on the stack, add it.
The plate "below" must be greater than or equal to the current plate size. If the current plate is too big, issue a warning and don't add the plate. If not, add it to the top of the stack.
Prints plates to the terminal.
Plates should stack vertically, with the largest plate on the bottom and the smallest plate on the top.
If there are no plates, display a message.
Remove Plates Remove a given number of plates from the top of the stack. The value should be a positive integer. If the value is less than or equal to zero, reject the operation and issue a warning.
If there are too many plates selected, reject the operation and issue a warning. Otherwise, remove plates from the stack and print a message.
Technical Requirements Use a Python list to track plates. Don't define the list inside a function. Keep it at file scope. Each menu item should be a function. You can add additional utility functions as well. (This isn't a hard requirement. You can solve the problem any way you see fit.) To collect positive integers from the user, convert the string value from the input function to an integer using the int function.
Plates =[] def addplate() : addplate =int(input(" enter number of plates ")) while addplate >= min(Plates, default =100000000000) : print(" Plate has to be smaller then previous entry") addplate =int(input(" enter number of plates ")) else: Plates.append(addplate) def printplate(): print("plates: ") if len(Plates) == 0 : print(" there are no plates") elif len(Plates) > 0: print( *sorted(Plates,reverse = True,)) def removeplate(): addplate =int(input(" enter number of plates ")) while addplate > min(Plates, default =0): print( " You cannot subtract more then "+ str(min(Plates)) + " plates ") addplate =int(input(" enter number of plates ")) if addplate in Plates: subtract =Plates.remove(addplate) print(f" {addplate} plates removed,sucess ") else: print(" number of plates not found") def run(): print( "") number = "" while number != "4": print( " 1. Add a plate ") print( " 2. Print Plates") print( " 3. Remove Plates") print( " 4. Exit ") number = input(" select a number : ") if number == "1" : addplate() elif number == "2" : printplate() elif number == "3" : removeplate() elif number == "4" : print(" thanks for playing ") else: print(" error ") run()