Computer Science

List two ways to implement Stack.

Python Stack

3 Likes

Answer

The two ways to implement Stack are as follows :

  1. Stack = list()
  2. Stack = []

Answered By

1 Like


Related Questions