Check sibling questions

Write a function in Python PUSH(Arr), where Arr is a list of numbers. From this list push all numbers divisible by 5 into a stack implemented by using a list. Display the stack if it has at least one element, otherwise display appropriate error message.

Answer:

def PUSH(Arr):

stack=[]

for i in range(0,len(Arr)):

if Arr[i]%5==0:

stack.append(Arr[i])

if len(stack)==0:

print("Stack is Empty")

else:

print(stack)

 


Transcript

Write a function in Python PUSH(Arr), where Arr is a list of numbers. From this list push all numbers divisible by 5 into a stack implemented by using a list. Display the stack if it has at least one element, otherwise display appropriate error message. Answer: def PUSH(Arr): stack=[] for i in range(0,len(Arr)): if Arr[i]%5==0: stack.append(Arr[i]) if len(stack)==0: print("Stack is Empty") else: print(stack)

  1. Computer Science - Class 12
  2. Chapter 3 - Stacks

About the Author

Davneet Singh

Davneet Singh has done his B.Tech from Indian Institute of Technology, Kanpur. He has been teaching from the past 14 years. He provides courses for Maths, Science and Computer Science at Teachoo